Package ro.isdc.wro.model.resource.processor.impl.css

Examples of ro.isdc.wro.model.resource.processor.impl.css.CssImportPreProcessor


   * thread-safe</a> issue.
   */
  @Test
  public void shouldNotComplainAboutRecursiveImportWhenRunningConcurrently() throws Exception {
    final AtomicReference<Map<?, ?>> contextMapRef = new AtomicReference<Map<?,?>>();
    victim = new CssImportPreProcessor() {
      {{
        contextMapRef.set(getContextMap());
      }}
      @Override
      protected void onRecursiveImportDetected() {
View Full Code Here


   *
   * @return A new {@link CssImportPreProcessor}.
   * @see CssImportPreProcessor.
   */
  public static CssImportPreProcessor cssImport() {
    return new CssImportPreProcessor();
  }
View Full Code Here

TOP

Related Classes of ro.isdc.wro.model.resource.processor.impl.css.CssImportPreProcessor

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.