Fix ClassCanBeStatic warning flagged by error prone
Change-Id: I0f2e619a9a4c0f339db7af70a4711ae4ee92a0b4
This commit is contained in:
		@@ -61,7 +61,7 @@ public class AccountGroupAuditLogScreen extends AccountGroupScreen {
 | 
				
			|||||||
        });
 | 
					        });
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  private class AuditEventTable extends FancyFlexTable<GroupAuditEventInfo> {
 | 
					  private static class AuditEventTable extends FancyFlexTable<GroupAuditEventInfo> {
 | 
				
			||||||
    AuditEventTable() {
 | 
					    AuditEventTable() {
 | 
				
			||||||
      table.setText(0, 1, AdminConstants.I.columnDate());
 | 
					      table.setText(0, 1, AdminConstants.I.columnDate());
 | 
				
			||||||
      table.setText(0, 2, AdminConstants.I.columnType());
 | 
					      table.setText(0, 2, AdminConstants.I.columnType());
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -85,7 +85,7 @@ public abstract class BuildSystem {
 | 
				
			|||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  // Represents a label in either buck or bazel.
 | 
					  // Represents a label in either buck or bazel.
 | 
				
			||||||
  class Label {
 | 
					  static class Label {
 | 
				
			||||||
    protected final String pkg;
 | 
					    protected final String pkg;
 | 
				
			||||||
    protected final String name;
 | 
					    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;
 | 
					    private static final long serialVersionUID = 1L;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    final byte[] why;
 | 
					    final byte[] why;
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user