Version 5.8.4

This commit is contained in:
Ulf Frisk
2023-09-21 23:19:19 +02:00
parent 4a501ff7fa
commit d9bd9f8482
37 changed files with 1801 additions and 1650 deletions

View File

@@ -16,7 +16,7 @@ public class JnaObjectMap {
}
public synchronized Integer put(Object obj) {
Integer key = Integer.valueOf(counter++);
Integer key = Integer.valueOf(counter++);
map.put(key, new WeakReference<>(obj));
return key;
}