Skip to content

Commit

Permalink
changes for App
Browse files Browse the repository at this point in the history
  • Loading branch information
jperedadnr committed Sep 27, 2024
1 parent bacc306 commit 26d919b
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2017, Gluon and/or its affiliates.
* Copyright (c) 2017, 2024, Gluon and/or its affiliates.
* Copyright (c) 2012, 2014, Oracle and/or its affiliates.
* All rights reserved. Use is subject to license terms.
*
Expand Down Expand Up @@ -56,7 +56,11 @@ public class AppPlatform {
private static String messageBoxFolder;
private static String logsFolder;
private static MessageBox<MessageBoxMessage> messageBox;


AppPlatform() {
// no-op
}

public static synchronized String getApplicationDataFolder() {

if (applicationDataFolder == null) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2016, 2022, Gluon and/or its affiliates.
* Copyright (c) 2016, 2024, Gluon and/or its affiliates.
* Copyright (c) 2012, 2014, Oracle and/or its affiliates.
* All rights reserved. Use is subject to license terms.
*
Expand Down Expand Up @@ -1031,6 +1031,10 @@ public boolean isUnused() {

public static class TitleComparator implements Comparator<DocumentWindowController> {

public TitleComparator() {
// no-op
}

@Override
public int compare(DocumentWindowController d1, DocumentWindowController d2) {
final int result;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2016, Gluon and/or its affiliates.
* Copyright (c) 2016, 2024, Gluon and/or its affiliates.
* Copyright (c) 2012, 2014, Oracle and/or its affiliates.
* All rights reserved. Use is subject to license terms.
*
Expand Down Expand Up @@ -46,7 +46,7 @@
/**
*
*/
class ResourceController {
public class ResourceController {

private final DocumentWindowController documentWindowController;
private File resourceFile;
Expand Down

0 comments on commit 26d919b

Please sign in to comment.