Skip to content

Commit

Permalink
buglabs-osgi: fix string escaping issue in util.nmea.
Browse files Browse the repository at this point in the history
  • Loading branch information
kgilmer committed Aug 8, 2011
1 parent eb00fef commit 74cd911
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -43,7 +43,7 @@ protected void initialize() {
}

private String parseChecksum(String sentence) {
String[] splitSentence = sentence.split(CHECKSUM_SEPARATOR);
String[] splitSentence = sentence.split("\\" + CHECKSUM_SEPARATOR);

if (splitSentence.length > 1) {
checksum = splitSentence[1];
Expand Down

0 comments on commit 74cd911

Please sign in to comment.