Add missing "break" from switch statement in BuilderClassPool

This commit is contained in:
Ben Gruver
2014-07-15 22:57:25 -07:00
committed by Connor Tumbleson
parent ca13778fe8
commit 4801482960

View File

@ -419,6 +419,7 @@ public class BuilderClassPool implements ClassSection<BuilderStringReference, Bu
SetSourceFile setSourceFile = (SetSourceFile)debugItem;
writer.writeSetSourceFile(setSourceFile.getCodeAddress(),
checkStringReference(setSourceFile.getSourceFileReference()));
break;
}
default:
throw new ExceptionWithContext("Unexpected debug item type: %d", debugItem.getDebugItemType());