Changeset 172

Show
Ignore:
Timestamp:
10/24/08 22:05:37 (2 months ago)
Author:
jlee
Message:

I'm just going through my old projects and cleaning up all the Java compiler warnings. None of these changes have been tested

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/org/thestaticvoid/iriverter/FailedToDoSomeShit.java

    r158 r172  
    2323 
    2424public class FailedToDoSomeShit extends Exception { 
     25        private static final long serialVersionUID = 1L; 
     26 
    2527        public FailedToDoSomeShit(String message) { 
    2628                super(message); 
  • trunk/src/org/thestaticvoid/iriverter/MPlayerNotFoundException.java

    r117 r172  
    2323 
    2424public class MPlayerNotFoundException extends Exception { 
    25         // empty 
     25        private static final long serialVersionUID = 1L; 
    2626} 
  • trunk/src/org/thestaticvoid/iriverter/ManualSplit.java

    r162 r172  
    3232 
    3333public class ManualSplit extends Composite implements SelectionListener, Job { 
    34         private CTabItem tabItem; 
    3534        private InputVideo inputVideo; 
    3635        private Text hr, min, sec; 
     
    3837        private Label length; 
    3938        private List marksList; 
    40         private String mplayerPath, syncVideo
     39        private String mplayerPath
    4140        private Mark[] syncMarks; 
    4241         
    4342        public ManualSplit(Composite parent, int style, CTabItem tabItem, InputVideo inputVideo, String mplayerPath) throws Exception { 
    4443                super(parent, style); 
    45                 this.tabItem = tabItem; 
    4644                this.inputVideo = inputVideo; 
    4745                this.mplayerPath = mplayerPath; 
  • trunk/src/org/thestaticvoid/iriverter/MencoderCommand.java

    r161 r172  
    2525 
    2626public class MencoderCommand extends ArrayList { 
     27        private static final long serialVersionUID = 1L; 
    2728        private InputVideo inputVideo; 
    2829        private String outputVideo; 
  • trunk/src/org/thestaticvoid/iriverter/MencoderStreamParser.java

    r166 r172  
    2929        private BufferedReader input; 
    3030        private String inputLine = "", lengthLine = ""; 
    31         private boolean stopReading = false; 
    3231         
    3332        public MencoderStreamParser(ProgressDialogInfo progressDialogInfo) { 
  • trunk/src/org/thestaticvoid/iriverter/Profile.java

    r133 r172  
    2323 
    2424import java.io.*; 
    25 import java.util.*; 
    2625 
    2726public class Profile { 
  • trunk/src/org/thestaticvoid/iriverter/SingleVideo.java

    r161 r172  
    3333 
    3434public class SingleVideo extends Composite implements SelectionListener, TabItemControl, Job { 
    35         private CTabItem tabItem; 
    3635        private InputVideo inputVideo; 
    3736        private MPlayerInfo inputVideoInfo; 
     
    4443        public SingleVideo(Composite parent, int style, CTabItem tabItem, InputVideo inputVideo, String mplayerPath) throws Exception { 
    4544                super(parent, style); 
    46                 this.tabItem = tabItem; 
    4745                this.inputVideo = inputVideo; 
    4846                this.mplayerPath = mplayerPath; 
     
    234232         
    235233        public void setTabItem(CTabItem tabItem) { 
    236                 this.tabItem = tabItem; 
     234                // empty 
    237235        } 
    238236