We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ab87b7 commit aa08abdCopy full SHA for aa08abd
1 file changed
src/main/java/org/lmdbjava/CursorIterator.java
@@ -166,18 +166,16 @@ public T val() {
166
return v;
167
}
168
169
- void setKey(final T k) {
170
- this.k = k;
+ void setK(final T key) {
+ this.k = key;
171
172
173
- void setVal(final T v) {
174
- this.v = v;
+ void setV(final T val) {
+ this.v = val;
175
176
177
boolean isEmpty() {
178
return this.k == null && this.v == null;
179
- }
180
-
181
182
183
/**
0 commit comments