Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ public class GoogleAuthorizationDialog extends Dialog {
protected Display display;

private static final int OPTIONS = SWT.APPLICATION_MODAL | SWT.DIALOG_TRIM;
private static final Image LOGO = GuiResource.getInstance().getImageHopUi();
private VerificationCodeReceiver receiver;

public GoogleAuthorizationDialog(Shell shell, VerificationCodeReceiver receiver) {
Expand All @@ -61,7 +60,7 @@ public GoogleAuthorizationDialog(Shell shell, VerificationCodeReceiver receiver)
}

public void open(String url) {
createDialog("Google Drive", url, OPTIONS, LOGO);
createDialog("Google Drive", url, OPTIONS, GuiResource.getInstance().getImageHopUi());
if (receiver != null) {
((CustomLocalServerReceiver) receiver).setUrl(url);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -157,8 +157,7 @@ private enum TabAddActions {

private UserDefinedJavaClassMeta input;
private UserDefinedJavaClassCodeSnippets snippitsHelper;

private static final GuiResource guiResource = GuiResource.getInstance();
private final GuiResource guiResource = GuiResource.getInstance();

private TreeItem itemInput;
private TreeItem itemInfo;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ public class ScriptValuesDialog extends BaseTransformDialog {

private TreeItem itemoutput;

private static final GuiResource guiresource = GuiResource.getInstance();
private final GuiResource guiresource = GuiResource.getInstance();

private IRowMeta rowPrevTransformFields;

Expand Down
Loading