Ignore:
Timestamp:
17.06.2009 10:04:22 (3 years ago)
Author:
stoecker
Message:

remove all these ugly tab stops introduced in the last half year

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/tools/AudioUtil.java

    r1462 r1677  
    2020 */ 
    2121public class AudioUtil { 
    22          
    23         static public double getCalibratedDuration(File wavFile) { 
     22 
     23    static public double getCalibratedDuration(File wavFile) { 
    2424        try { 
    25                 AudioInputStream audioInputStream = AudioSystem.getAudioInputStream( 
    26                                 new URL("file:".concat(wavFile.getAbsolutePath()))); 
     25            AudioInputStream audioInputStream = AudioSystem.getAudioInputStream( 
     26                    new URL("file:".concat(wavFile.getAbsolutePath()))); 
    2727            AudioFormat audioFormat = audioInputStream.getFormat(); 
    2828            long filesize = wavFile.length(); 
     
    3434            return naturalLength / calibration; 
    3535        } catch (Exception e) { 
    36                 return 0.0; 
     36            return 0.0; 
    3737        } 
    38         } 
    39          
     38    } 
    4039} 
    41   
Note: See TracChangeset for help on using the changeset viewer.