Skip to content

Commit

Permalink
fix generation of MessageID enum
Browse files Browse the repository at this point in the history
  • Loading branch information
breaker27 committed Jan 1, 2014
1 parent fefbd2d commit 123fc8f
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -454,7 +454,7 @@ private void generateMessageGroupFiles(Node xmlRoot, Hashtable<Integer, String>

String suffix = n == messageNodes.getLength() - 1 ? "" : ",";

out.println(" MESSAGEID_" + messageGroupName.toUpperCase() + "_" + name + " = " + messageGroupID + suffix);
out.println(" MESSAGEID_" + messageGroupName.toUpperCase() + "_" + name + " = " + messageID + suffix);
}

out.println("} " + messageGroupName.toUpperCase() + "_MessageIDEnum;");
Expand Down

0 comments on commit 123fc8f

Please sign in to comment.