Skip to content

Commit 8508589

Browse files
committed
strip unused coomposite plot component
I forgot too remove the composite plot component object from the TagPileup script when I moved the plot generation to the TagPileupOutput class from the TagPileup script class two commmits ago. This commit cleans up the unused code.
1 parent c99547f commit 8508589

1 file changed

Lines changed: 0 additions & 7 deletions

File tree

src/scripts/Read_Analysis/TagPileup.java

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
package scripts.Read_Analysis;
22

3-
import java.awt.Component;
43
import java.io.File;
54
import java.io.FileNotFoundException;
65
import java.io.FileOutputStream;
@@ -44,8 +43,6 @@ public class TagPileup {
4443

4544
PrintStream PS = null;
4645

47-
Component compositePlot = null;
48-
4946
String outMatrixBasename;
5047

5148
public TagPileup(File be, File ba, PileupParameters param, PrintStream outputwindow_ps, String outMat) {
@@ -426,10 +423,6 @@ public Vector<BEDCoord> loadCoord(File INPUT) throws FileNotFoundException {
426423
return COORD;
427424
}
428425

429-
public Component getCompositePlot() {
430-
return (compositePlot);
431-
}
432-
433426
private void printPS(String line) {
434427
if (PS != null) {
435428
PS.println(line);

0 commit comments

Comments
 (0)