improving import suggestion window

This commit is contained in:
Manindra Moharana
2013-07-14 22:15:01 +05:30
parent 10755992a4
commit 8c06d26e0e
2 changed files with 31 additions and 26 deletions

View File

@@ -267,9 +267,8 @@ public class ErrorCheckerService implements Runnable{
int idx = p.getMessage().indexOf(" cannot be resolved to a type");
if(idx > 1){
String missingClass = p.getMessage().substring(0, idx);
System.out.println("Will suggest for type:" + missingClass);
//System.out.println("Will suggest for type:" + missingClass);
astGenerator.suggestImports(missingClass);
runManualErrorCheck();
}
}
}