in src/main/java/org/apache/sling/commons/compiler/impl/CompilationResultImpl.java [106:113]
public void onWarning(String msg, String sourceFile, int line, int position) {
if ( !this.ignoreWarnings ) {
if ( warnings == null ) {
warnings = new ArrayList<CompilerMessage>();
}
warnings.add(new CompilerMessage(sourceFile, line, position, msg));
}
}