Changeset 13647 in josm for trunk/src/gnu/getopt/Getopt.java
- Timestamp:
- 2018-04-19T20:37:16+02:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gnu/getopt/Getopt.java
r12892 r13647 657 657 // strictly follow the POSIX standard. This replaces the "POSIXLY_CORRECT" 658 658 // environment variable in the C version 659 try { 659 660 if (System.getProperty("gnu.posixly_correct", null) == null) 660 661 posixly_correct = false; … … 665 666 // Locale.US); 666 667 } 668 } catch (SecurityException e) { 669 System.err.println(e.getMessage()); 670 } 667 671 668 672 // Determine how to handle the ordering of options and non-options
Note:
See TracChangeset
for help on using the changeset viewer.