コード例 #1
0
ファイル: CssPrinter.java プロジェクト: theogimonde/less4j
 private LessCompiler.SourceMapConfiguration getSourceMapConfiguration(
     LessCompiler.Configuration options) {
   return options != null
       ? options.getSourceMapConfiguration()
       : new LessCompiler.SourceMapConfiguration();
 }
コード例 #2
0
ファイル: CssPrinter.java プロジェクト: theogimonde/less4j
 private boolean isCompressing() {
   return options != null ? options.isCompressing() : false;
 }