We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc0ee71 commit e70a3eeCopy full SHA for e70a3ee
1 file changed
src/main/java/org/lmdbjava/Env.java
@@ -174,7 +174,7 @@ public List<byte[]> getDbiNames() {
174
try (Txn<T> txn = txnRead();
175
Cursor<T> cursor = names.openCursor(txn)) {
176
if (!cursor.first()) {
177
- return Collections.EMPTY_LIST;
+ return Collections.emptyList();
178
}
179
do {
180
final byte[] name = proxy.getBytes(cursor.key());
0 commit comments