Skip to content

Commit

Permalink
Fix #132
Browse files Browse the repository at this point in the history
  • Loading branch information
konsoletyper committed Jul 2, 2015
1 parent 15f5885 commit 19f0ace
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ private TString format(TString message, Object[] params) {
index = next;
continue;
}
int paramIndex = TInteger.parseInt(message.substring(index, next - 1));
int paramIndex = TInteger.parseInt(message.substring(paramStart, next));
if (paramIndex >= params.length) {
sb.append(message.substring(index, next));
index = next;
Expand Down

0 comments on commit 19f0ace

Please sign in to comment.