Skip to content

Commit d22b055

Browse files
committed
update url
1 parent 5972c44 commit d22b055

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

app/src/processing/app/platform/LinuxPlatform.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -41,24 +41,24 @@ public void init(Base base) {
4141
(!javaVendor.contains("Sun") && !javaVendor.contains("Oracle")) ||
4242
javaVM == null || !javaVM.contains("Java")) {
4343
Base.showWarning("Not fond of this Java VM",
44-
"Processing requires Java 6 from Sun (i.e. the sun-java-jdk\n" +
44+
"Processing requires Java 7 from Sun (i.e. the sun-java-jdk\n" +
4545
"package on Ubuntu). Other versions such as OpenJDK, IcedTea,\n" +
4646
"and GCJ are strongly discouraged. Among other things, you're\n" +
4747
"likely to run into problems with sketch window size and\n" +
4848
"placement. For more background, please read the wiki:\n" +
49-
"http://wiki.processing.org/w/Supported_Platforms#Linux", null);
49+
"https://github.com/processing/processing/wiki/Supported-Platforms#Linux", null);
5050
}
51-
52-
// Set x11 WM_CLASS property which is used as the application
51+
52+
// Set x11 WM_CLASS property which is used as the application
5353
// name by Gnome3 and other window managers.
5454
// https://github.com/processing/processing/issues/2534
5555
try {
5656
Toolkit xToolkit = Toolkit.getDefaultToolkit();
57-
java.lang.reflect.Field awtAppClassNameField =
57+
java.lang.reflect.Field awtAppClassNameField =
5858
xToolkit.getClass().getDeclaredField("awtAppClassName");
5959
awtAppClassNameField.setAccessible(true);
6060
awtAppClassNameField.set(xToolkit, "Processing");
61-
61+
6262
} catch(Exception e) {
6363
// In case the implementation details change
6464
e.printStackTrace();

0 commit comments

Comments
 (0)