Skip to content

Commit

Permalink
Minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
amrabed committed Aug 13, 2015
1 parent f59653c commit 367b7e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/edu/vt/rhids/input/BoSC.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public BoSC(String string)

for (String value : string.split(","))
{
add(Byte.parseByte(value));
add(Byte.parseByte(value.trim()));
}
}
}

0 comments on commit 367b7e2

Please sign in to comment.