Changeset 582 in josm for trunk/src/org/openstreetmap/josm/tools/AudioPlayer.java
- Timestamp:
- 2008-03-15T14:39:28+01:00 (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/tools/AudioPlayer.java
r577 r582 4 4 import static org.openstreetmap.josm.tools.I18n.tr; 5 5 6 import java. lang.Thread;6 import java.io.IOException; 7 7 import java.net.URL; 8 8 … … 12 12 import javax.sound.sampled.DataLine; 13 13 import javax.sound.sampled.SourceDataLine; 14 import java.io.IOException;15 14 import javax.swing.JOptionPane; 16 15 17 16 import org.openstreetmap.josm.Main; 18 import org.openstreetmap.josm.data.Preferences;19 17 20 18 /** … … 321 319 break; 322 320 case PAUSE: 323 stateChange = state.PAUSED;321 stateChange = State.PAUSED; 324 322 break; 325 323 }
Note:
See TracChangeset
for help on using the changeset viewer.
