Fix Eclipse warnings about unnecessary warning suppressions

This commit is contained in:
Ben Liblit 2017-03-28 18:15:28 -05:00
parent b197c231e0
commit b9c2890db6
2 changed files with 1 additions and 2 deletions

View File

@ -699,7 +699,6 @@ public abstract class AstTranslator extends CAstVisitor<AstTranslator.WalkContex
* holds the control-flow graph as it is being constructed. When construction
* is complete, information is stored in an {@link AstCFG}
*/
@SuppressWarnings("javadoc")
public final class IncipientCFG extends SparseNumberedGraph<PreBasicBlock> {
protected class Unwind {

View File

@ -542,7 +542,7 @@ public class TabulationSolver<T, P, F> {
/**
* Handle lines [14 - 19] of the algorithm, propagating information into and across a call site.
*/
@SuppressWarnings({ "unused", "unused" })
@SuppressWarnings("unused")
protected void processCall(final PathEdge<T> edge) {
if (DEBUG_LEVEL > 0) {
System.err.println("process call: " + edge);