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

@@ -104,7 +104,7 @@ public class MyPasswordScreen extends SettingsScreen {
}
@Override
public void onFailure(final Throwable caught) {
public void onFailure(Throwable caught) {
if (RestApi.isNotFound(caught)) {
Gerrit.getUserAccount().username(null);
display();
@@ -121,7 +121,7 @@ public class MyPasswordScreen extends SettingsScreen {
enableUI(true);
}
private void row(final Grid info, final int row, final String name, final Widget field) {
private void row(Grid info, int row, String name, Widget field) {
final CellFormatter fmt = info.getCellFormatter();
if (LocaleInfo.getCurrentLocale().isRTL()) {
info.setText(row, 1, name);
@@ -146,7 +146,7 @@ public class MyPasswordScreen extends SettingsScreen {
}
@Override
public void onFailure(final Throwable caught) {
public void onFailure(Throwable caught) {
enableUI(true);
}
});