Format Java files with google-java-format

Change-Id: If2c9ef1ca5c97b792478cd664b68e8d3ff959443
This commit is contained in:
David Pursehouse
2017-04-05 09:55:15 +09:00
parent 87db31bfc1
commit c57fb21c3f
4 changed files with 18 additions and 13 deletions

View File

@@ -121,16 +121,15 @@ public final class Plugin extends JavaScriptObject {
*
* @param extensionPoint the UI extension point for which the panel should be registered.
* @param entry callback function invoked to create the panel widgets.
* @param name the name of the panel which can be used to specify panel
* ordering via project config
* @param name the name of the panel which can be used to specify panel ordering via project
* config
*/
public final void panel(GerritUiExtensionPoint extensionPoint,
Panel.EntryPoint entry, String name) {
public final void panel(
GerritUiExtensionPoint extensionPoint, Panel.EntryPoint entry, String name) {
panel(extensionPoint.name(), wrap(entry), name);
}
private native void panel(String i, JavaScriptObject e, String n)
/*-{ this.panel(i, e, n) }-*/;
private native void panel(String i, JavaScriptObject e, String n)/*-{ this.panel(i, e, n) }-*/ ;
protected Plugin() {}