Skip to content

Commit

Permalink
Reformat for codestyle
Browse files Browse the repository at this point in the history
  • Loading branch information
calixtus committed May 20, 2019
1 parent a363f5c commit 12c14ab
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ public AbstractPushToApplication(DialogService dialogService) {
this.dialogService = dialogService;
}

public DialogService getDialogService() { return this.dialogService; }
public DialogService getDialogService() {
return this.dialogService;
}

@Override
public String getName() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ public class PushToApplicationSettings {
protected AbstractPushToApplication application;
private DialogService dialogService;

public PushToApplicationSettings(DialogService dialogService) { this.dialogService = dialogService; }
public PushToApplicationSettings(DialogService dialogService) {
this.dialogService = dialogService;
}

public GridPane getJFXSettingPane(int n) {
switch (n) {
Expand Down

0 comments on commit 12c14ab

Please sign in to comment.