Remove 'final' from method signatures across gerrit.

Change-Id: I986a5507aa26ceb28305a7b08991e85238bde0e3
This commit is contained in:
Han-Wen Nienhuys
2017-06-13 18:10:03 +02:00
committed by Edwin Kempin
parent 64e43c24ef
commit b0fb0a7a96
424 changed files with 1381 additions and 1465 deletions

View File

@@ -22,7 +22,7 @@ final class CommandProvider {
private final Provider<Command> provider;
private final String description;
CommandProvider(final Provider<Command> p, final String d) {
CommandProvider(Provider<Command> p, String d) {
this.provider = p;
this.description = d;
}