Fix ClassCanBeStatic warning flagged by error prone

Change-Id: I0f2e619a9a4c0f339db7af70a4711ae4ee92a0b4
This commit is contained in:
David Ostrovsky
2017-02-18 11:57:52 +01:00
parent 25caedcabe
commit 187cacea0b
2 changed files with 3 additions and 3 deletions

View File

@@ -85,7 +85,7 @@ public abstract class BuildSystem {
}
// Represents a label in either buck or bazel.
class Label {
static class Label {
protected final String pkg;
protected final String name;
@@ -120,7 +120,7 @@ public abstract class BuildSystem {
}
}
class BuildFailureException extends Exception {
static class BuildFailureException extends Exception {
private static final long serialVersionUID = 1L;
final byte[] why;