Changeset 6997 in josm
- Timestamp:
- 2014-04-24T15:36:42+02:00 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/tools/PlatformHookUnixoid.java
r6995 r6997 16 16 import java.net.URISyntaxException; 17 17 import java.util.Arrays; 18 import java.util.Calendar; 18 19 19 20 import javax.swing.JOptionPane; … … 360 361 361 362 protected void askUpdateJava(final String version, final String url) { 363 // Expiration date of this feature around the expected release of our first Java 7 tested version 364 Calendar today = Calendar.getInstance(); 365 Calendar expiration = Calendar.getInstance(); 366 expiration.set(2014, Calendar.MAY, 25); 367 if (!today.before(expiration)) { 368 return; 369 } 362 370 GuiHelper.runInEDTAndWait(new Runnable() { 363 371 @Override
Note:
See TracChangeset
for help on using the changeset viewer.