Cleanup (logging condition fixed)

This commit is contained in:
Roman Shevchenko
2016-01-05 15:16:31 +01:00
parent 7706e7832a
commit d9588d3262
@@ -64,7 +64,7 @@ public class ClassFileStubBuilder implements BinaryFileStubBuilder {
try {
PsiFileStub<?> stub = ClsFileImpl.buildFileStub(file, content);
if (stub == null && fileContent.getFileName().indexOf('$') >= 0) {
if (stub == null && fileContent.getFileName().indexOf('$') < 0) {
LOG.info("No stub built for file " + fileContent);
}
return stub;