1
0
Fork 0
mirror of https://github.com/geometer/FBReaderJ.git synced 2025-10-05 02:39:23 +02:00

synchronization with native branch

This commit is contained in:
Nikolay Pultsin 2012-02-24 00:23:58 +01:00
parent 1a55b864aa
commit 4340db7f70
2 changed files with 10 additions and 0 deletions

View file

@ -115,4 +115,10 @@ public class PluginCollection {
}
private native NativeFormatPlugin[] nativePlugins();
private native void free();
protected void finalize() throws Throwable {
free();
super.finalize();
}
}