Skip to content
This repository was archived by the owner on May 24, 2020. It is now read-only.

Commit

Permalink
cast error fix
Browse files Browse the repository at this point in the history
  • Loading branch information
BFergerson committed Jul 4, 2017
1 parent 0607f0b commit c9d6e7f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ public StringBuilder getGeneratedRules() {

if ("begin_work".equals(eventType)) {
if (useCompleteEvents) {
ruleBuilder.append("\t\tpushLocalConfig(getNextEventId() + \"-\" + Long.toString(System.currentTimeMillis()))\n");
ruleBuilder.append("\t\tpushLocalConfig(Integer.toString(getNextEventId()) + \"-\" + Long.toString(System.currentTimeMillis()))\n");
} else {
ruleBuilder.append("\t\tbegin_work(").append(methodId).append(",\"app\")\n");
}
Expand Down

0 comments on commit c9d6e7f

Please sign in to comment.