Package ro.isdc.wro.extensions.processor.support.yui

Examples of ro.isdc.wro.extensions.processor.support.yui.YuiCssCompressor


   */
  @Override
  public void process(final Resource resource, final Reader reader, final Writer writer)
    throws IOException {
    try {
      final YuiCssCompressor compressor = new YuiCssCompressor(reader);
      compressor.compress(writer, linebreakpos);
    } catch(final Exception e) {
      LOG.error("Exception occured while processing resource: " + resource + " using processor: " + ALIAS);
      onException(e);
    } finally {
      reader.close();
View Full Code Here

TOP

Related Classes of ro.isdc.wro.extensions.processor.support.yui.YuiCssCompressor

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.