Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jsuit committed Feb 15, 2013
1 parent b9e31df commit 07e0059
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion M4/M4/src/edu/gatech/oad/antlab/person/Person2.java
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ private String calc(String input) {
String temp1 = calc(input.substring(0,split));
String temp2 = calc(input.substring(split));

if (math.random() > 0.5) {
if (Math.random() > 0.5) {
return temp1 + temp2;
}
else {
Expand Down

0 comments on commit 07e0059

Please sign in to comment.