Skip to content

Commit ab26d23

Browse files
committed
Remove unnecessary Checkstyle suppressions
1 parent 627388f commit ab26d23

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/main/java/org/lmdbjava/KeyRange.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,6 @@ public KeyRange(final KeyRangeType type, final T start, final T stop) {
7070
* @param <T> buffer type
7171
* @return a key range (never null)
7272
*/
73-
@SuppressWarnings({"checkstyle:SuppressWarnings", "unchecked"})
7473
public static <T> KeyRange<T> all() {
7574
return (KeyRange<T>) FW;
7675
}
@@ -81,7 +80,6 @@ public static <T> KeyRange<T> all() {
8180
* @param <T> buffer type
8281
* @return a key range (never null)
8382
*/
84-
@SuppressWarnings({"checkstyle:SuppressWarnings", "unchecked"})
8583
public static <T> KeyRange<T> allBackward() {
8684
return (KeyRange<T>) BK;
8785
}

0 commit comments

Comments
 (0)