Remove deprecated/discouraged usages of JNA constructs by matthiasblaesing · Pull Request #102 · gstreamer-java/gst1-java-core

added 2 commits

May 24, 2018 20:42
Pointer#SIZE will be removed from the JNA codebase (it is already
removed in master) as it is the root of class loading deadlocks.
Pointer#setString(int offset, String value, boolean wide)

was replaced by the two methods:

Pointer#setString(int offset, String value)
and
Pointer#setWideString(int offset, String value)

The same holds true for the getter.