Clean up the code
[proteocache.git] / engine / compbio / engine / JpredJob.java
index 522ad9f..99981e4 100644 (file)
@@ -17,7 +17,6 @@ public class JpredJob extends Job {
 
        public JpredJob(String jobid, String date1, String date2) {
                super(jobid, date1, date2);
-               this.protein = protein;
                predictions = new ArrayList<FastaSequence>();
                alignment = new ArrayList<FastaSequence>();
                log = "";
@@ -25,7 +24,6 @@ public class JpredJob extends Job {
 
        public JpredJob(String jobid, String date1, String date2, List<FastaSequence> alignment, List<FastaSequence> predictions) {
                super(jobid, date1, date2);
-               this.protein = protein;
                this.alignment = alignment;
                this.predictions = predictions;
        }