changeset 1154:b763518484a6

Made the long constructor public.
author Deepak Bhole <dbhole@redhat.com>
date Fri, 24 Oct 2008 10:08:18 -0400
parents a8f8cb9d58df
children ce6a731bd3b9
files ChangeLog plugin/icedtea/netscape/javascript/JSObject.java
diffstat 2 files changed, 6 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Fri Oct 24 13:33:32 2008 +0200
+++ b/ChangeLog	Fri Oct 24 10:08:18 2008 -0400
@@ -1,3 +1,8 @@
+2008-10-24  Deepak Bhole  <dbhole@redhat.com>
+
+	* plugin/icedtea/netscape/javascript/JSObject.java: Make long constructor
+	public.
+
 2008-10-24  Matthias Klose  <doko@ubuntu.com>
 
 	* Makefile.am (clean-pulseaudio): Don't remove source files. Might
--- a/plugin/icedtea/netscape/javascript/JSObject.java	Fri Oct 24 13:33:32 2008 +0200
+++ b/plugin/icedtea/netscape/javascript/JSObject.java	Fri Oct 24 10:08:18 2008 -0400
@@ -109,7 +109,7 @@
         internal = jsobj_addr;
     }
 
-    private JSObject(long jsobj_addr) {
+    public JSObject(long jsobj_addr) {
         PluginDebug.debug ("JSObject long CONSTRUCTOR");
         long_internal = jsobj_addr;
     }