Skip to content

Commit

Permalink
removed unneeded commented out code
Browse files Browse the repository at this point in the history
  • Loading branch information
dizz committed Jun 24, 2011
1 parent 56928b5 commit 3314764
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions occi-antlr-java/Occi.g
Expand Up @@ -387,10 +387,7 @@ attribute_value_attr returns [Object value] :
$value = removeQuotes($QUOTED_VALUE.text);
}
| DIGITS {
//$value = BigInteger.
BigInteger x = new BigInteger(removeQuotes($DIGITS.text));
$value = x;
//$value = Integer.parseInt(removeQuotes($DIGITS.text));
$value = new BigInteger(removeQuotes($DIGITS.text));
}
| FLOAT {
$value = new BigDecimal(removeQuotes($FLOAT.text));
Expand Down

0 comments on commit 3314764

Please sign in to comment.