Skip to content

Commit ab0d41a

Browse files
committed
Replaces lower case l with upper case L in long literal.
Depending on your font it can be confusing with lowercase l instead of uppercase. Not very important but a quick stylistic change while I'm here.
1 parent ce58241 commit ab0d41a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/org/hashids/HashidsTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ public void test_for_vlues_greater_int_maxval() {
134134
public void test_issue10() {
135135
final String expected = "3kK3nNOe";
136136
String res;
137-
final long num_to_hash = 75527867232l;
137+
final long num_to_hash = 75527867232L;
138138
long[] res2;
139139
final Hashids a = new Hashids("this is my salt");
140140
res = a.encode(num_to_hash);

0 commit comments

Comments
 (0)