We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac2dc83 commit 95f300cCopy full SHA for 95f300c
src/net/sf/j2s/core/builder/JavaBuilder.java
@@ -418,6 +418,9 @@ private SimpleLookupTable findDeltas() {
418
419
public State getLastState(IProject project) {
420
org.eclipse.jdt.internal.core.builder.State lastBuiltState = (org.eclipse.jdt.internal.core.builder.State) JavaModelManager.getJavaModelManager().getLastBuiltState(project, notifier.monitor);
421
+ if (lastBuiltState == null) {
422
+ return null;
423
+ }
424
ByteArrayOutputStream baos = new ByteArrayOutputStream();
425
DataOutputStream out = new DataOutputStream(baos);
426
try {
0 commit comments