byte[] merge = mergeDeepJsFiles(servletContext, timestamp, isMinimized);
//byte[] min = YUICompressorAdaptor.compressJS( new StringReader(new String(merge)) ).getBytes();
ByteArrayOutputStream jsMinout = new ByteArrayOutputStream();
try {
new JSMin(new ByteArrayInputStream(merge), jsMinout).jsmin();
} catch (UnterminatedRegExpLiteralException e) {
e.printStackTrace();
} catch (UnterminatedCommentException e) {
e.printStackTrace();
} catch (UnterminatedStringLiteralException e) {