Use consistent upper case long literal

Change-Id: I4c859e3854f676a4a5ed698b16d133213d092fbe
This commit is contained in:
Patrick Hiesel
2016-12-15 10:08:46 +01:00
parent 8824ce1e44
commit b9f284e9e4

View File

@@ -59,7 +59,7 @@ public class AbstractParserTest {
protected static Comment newComment(String uuid, String file,
String message, int line) {
Comment c = new Comment(new Comment.Key(uuid, file, 1),
new Account.Id(0), new Timestamp(0l), (short) 0, message, "", false);
new Account.Id(0), new Timestamp(0L), (short) 0, message, "", false);
c.lineNbr = line;
return c;
}