You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The bit-flag org.eclipse.jdt.internal.compiler.codegen.BranchLabel.USED is not useful. We religiously set it on branch labels and case labels, but the only use of it from org.eclipse.jdt.internal.compiler.codegen.CaseLabel.place() reads:
Found by code inspection:
The bit-flag
org.eclipse.jdt.internal.compiler.codegen.BranchLabel.USED
is not useful. We religiously set it on branch labels and case labels, but the only use of it fromorg.eclipse.jdt.internal.compiler.codegen.CaseLabel.place()
reads:Now, there is a single implementation of the method getPosition() in the
CodeStream
hierarchy that simply returnsthis.position
So the block above is effectively pointless.
The text was updated successfully, but these errors were encountered: