Skip to content

Commit

Permalink
fix for string compare
Browse files Browse the repository at this point in the history
  • Loading branch information
Spinelli committed Sep 18, 2017
1 parent e2b578f commit 8897c2d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2387,7 +2387,7 @@ armyc2.c2sd.renderer.utilities.SymbolUtilities = {};
blRetVal = true;
}
else if(strSymbolID.charAt(2)=='F' &&
strSymbolID.substring(4, 6).equals("BA")==false)
strSymbolID.substring(4, 6) !== "BA")
{
blRetVal = true;
}
Expand Down

0 comments on commit 8897c2d

Please sign in to comment.