Skip to content

Commit 8a8153f

Browse files
committed
fix compile errors missed from merge master to dev
A bug was missed during the merge from leftover "dev" text. This fixes the bug.
1 parent 1559505 commit 8a8153f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/window_interface/Read_Analysis/TagPileupWindow.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ public Void doInBackground() throws IOException, InterruptedException {
126126
JOptionPane.showMessageDialog(null, "Invalid Minimum Insert Size!!! Must be greater than or equal to 0 bp");
127127
} else if (chckbxFilterByMax.isSelected() && Integer.parseInt(txtMax.getText()) < 0) {
128128
JOptionPane.showMessageDialog(null, "Invalid Maximum Insert Size!!! Must be greater than or equal to 0 bp");
129-
dev} else if (chckbxFilterByMin.isSelected() && chckbxFilterByMax.isSelected() && Integer.parseInt(txtMax.getText()) < Integer.parseInt(txtMin.getText())) {
129+
} else if (chckbxFilterByMin.isSelected() && chckbxFilterByMax.isSelected() && Integer.parseInt(txtMax.getText()) < Integer.parseInt(txtMin.getText())) {
130130
JOptionPane.showMessageDialog(null, "Invalid Maximum & Minimum Insert Sizes!!! Maximum must be larger/equal to Minimum!");
131131
} else if (BEDFiles.size() < 1) {
132132
JOptionPane.showMessageDialog(null, "No BED Files Loaded!!!");

0 commit comments

Comments
 (0)