Skip to content

Commit aa08abd

Browse files
committed
Parameter renames to satisfy PMD
1 parent 6ab87b7 commit aa08abd

1 file changed

Lines changed: 4 additions & 6 deletions

File tree

src/main/java/org/lmdbjava/CursorIterator.java

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -166,18 +166,16 @@ public T val() {
166166
return v;
167167
}
168168

169-
void setKey(final T k) {
170-
this.k = k;
169+
void setK(final T key) {
170+
this.k = key;
171171
}
172172

173-
void setVal(final T v) {
174-
this.v = v;
173+
void setV(final T val) {
174+
this.v = val;
175175
}
176176

177177
boolean isEmpty() {
178178
return this.k == null && this.v == null;
179-
}
180-
181179
}
182180

183181
/**

0 commit comments

Comments
 (0)