Changeset 256
- Timestamp:
- Feb 11, 2011, 1:48:16 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/openjdk/jdk/src/share/classes/com/sun/media/sound/SoftSynthesizer.java
r2 r256 171 171 } 172 172 } 173 174 private static final boolean isOS2 = AccessController 175 .doPrivileged(new PrivilegedAction<Boolean>() { 176 public Boolean run() { 177 return System.getProperty("os.name").startsWith("OS/2"); 178 } 179 }); 173 180 174 181 protected static final String INFO_NAME = "Gervill"; … … 929 936 list.add(item); 930 937 931 item = new AudioSynthesizerPropertyInfo("jitter correction", o?jitter_correction: true);938 item = new AudioSynthesizerPropertyInfo("jitter correction", o?jitter_correction:isOS2?false:true); 932 939 item.description = "Turn jitter correction on or off."; 933 940 list.add(item);
Note:
See TracChangeset
for help on using the changeset viewer.