Merge remote-tracking branch 'github/master'

This commit is contained in:
Joel Dice
2012-08-12 15:03:40 -06:00
3 changed files with 26 additions and 13 deletions

View File

@ -139,5 +139,12 @@ public class Strings {
testDecode(false);
testDecode(true);
expect
(java.text.MessageFormat.format
("{0} enjoy {1} {2}. do {4}? {4} do?",
"I", "grape", "nuts", "foobar",
new Object() { public String toString() { return "you"; } })
.equals("I enjoy grape nuts. do you? you do?"));
}
}