258699: Add finalize method to CipherContentProxy class.

This commit is contained in:
saul.edwards%sun.com 2004-09-20 17:11:55 +00:00
Родитель 7cce1d2bea
Коммит f681ad98e3
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -44,4 +44,8 @@ final class CipherContextProxy extends NativeProxy {
}
protected native void releaseNativeResources();
protected void finalize() throws Throwable {
super.finalize();
}
}