Skip to content

Commit c28b54c

Browse files
committed
PDFBOX-5660: remove unneeded final, as suggested by Valery Bokov; closes #222
git-svn-id: https://svn.apache.org/repos/asf/pdfbox/trunk@1928000 13f79535-47bb-0310-9956-ffa450edef68
1 parent 055513d commit c28b54c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pdfbox/src/main/java/org/apache/pdfbox/cos/COSObjectKey.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ public COSObjectKey(long num, int gen, int index)
7272
* @param gen the generation number
7373
* @return the internal hash for the given values
7474
*/
75-
public static final long computeInternalHash(long num, int gen)
75+
public static long computeInternalHash(long num, int gen)
7676
{
7777
return num << NUMBER_OFFSET | (gen & GENERATION_MASK);
7878
}

0 commit comments

Comments
 (0)