Added missing semicolon to Pi.java

This commit is contained in:
Jonas Bonér 2011-04-19 14:05:53 +02:00
parent a1cd8a9f37
commit 90d6844b4a

View file

@ -98,13 +98,14 @@ public class Pi {
Work work = (Work) message;
// perform the work
double result = calculatePiFor(work.getArg(), work.getNrOfElements())
double result = calculatePiFor(work.getArg(), work.getNrOfElements());
// reply with the result
getContext().replyUnsafe(new Result(result));
} else throw new IllegalArgumentException("Unknown message [" + message + "]");
}
}
// ==================
// ===== Master =====