[libinline-java-perl] 325/398: 94

Jonas Smedegaard dr at jones.dk
Thu Feb 26 11:43:19 UTC 2015


This is an automated email from the git hooks/post-receive script.

js pushed a commit to tag 0.55
in repository libinline-java-perl.

commit d4cf02c21a2e6fa816e73970c7621efa1dd733fc
Author: patrick_leb <>
Date:   Thu Jun 3 13:45:53 2004 +0000

    94
---
 Java.pm                                                   |  2 +-
 Java.pod                                                  | 10 +++++-----
 Java/Array.pm                                             |  2 +-
 Java/Callback.pm                                          |  2 +-
 Java/Class.pm                                             |  2 +-
 Java/JNI.pm                                               |  2 +-
 Java/JVM.pm                                               |  2 +-
 Java/Object.pm                                            |  2 +-
 Java/PerlNatives/PerlNatives.pm                           |  2 +-
 Java/Portable.pm                                          |  2 +-
 Java/Protocol.pm                                          |  2 +-
 Java/sources/org/perl/inline/java/InlineJavaProtocol.java |  6 +++---
 META.yml                                                  |  2 +-
 13 files changed, 19 insertions(+), 19 deletions(-)

diff --git a/Java.pm b/Java.pm
index 564eacf..c48b489 100644
--- a/Java.pm
+++ b/Java.pm
@@ -8,7 +8,7 @@ package Inline::Java ;
 use strict ;
 require 5.006 ;
 
-$Inline::Java::VERSION = '0.48_93' ;
+$Inline::Java::VERSION = '0.48_94' ;
 
 
 # DEBUG is set via the DEBUG config
diff --git a/Java.pod b/Java.pod
index 3606138..814ea0a 100644
--- a/Java.pod
+++ b/Java.pod
@@ -220,7 +220,7 @@ make use of the same JVM.
 
 =item START_JVM
 
-When used with SHARED_JVM, tells C<Inline::Java> that JVM should
+When used with SHARED_JVM, tells C<Inline::Java> that the JVM should
 already be running and that it should not attempt to start a new
 one. This option is useful in combination with command line interface
 described in the BUGS AND DEFICIENCIES section. Default is 1.
@@ -995,16 +995,16 @@ rebuilt to match the Perl code.
 
 Under certain environments, i.e. CGI or mod_perl, the JVM cannot start
 properly because of the way these environments set up STDIN and STDOUT.
-In these cases, you maybe wish to control the JVM (in shared mode) manually
+In these cases, you may wish to control the JVM (in shared mode) manually
 using the following commands:
 
     % perl -MInline::Java::Server=status
     % perl -MInline::Java::Server=start 
     % perl -MInline::Java::Server=stop 
-    % perl -MInline::Java::Server=restat 
+    % perl -MInline::Java::Server=restart 
    
-You can't specify C<Inline::Java> options by setting the proper
-environment variables. You can also set the _Inline directory by setting
+You can specify C<Inline::Java> options by setting the proper
+environment variables, and you can also set the _Inline directory by using
 the PERL_INLINE_JAVA_DIRECTORY environment variable. 
 
 In addition, you may also wish to set the START_JVM option to 0 in your scripts 
diff --git a/Java/Array.pm b/Java/Array.pm
index 0d03b2a..ed2aa2d 100644
--- a/Java/Array.pm
+++ b/Java/Array.pm
@@ -4,7 +4,7 @@ package Inline::Java::Array ;
 use strict ;
 use Carp ;
 
-$Inline::Java::Array::VERSION = '0.48_93' ;
+$Inline::Java::Array::VERSION = '0.48_94' ;
 
 # Here we store as keys the knots and as values our blessed objects
 my $OBJECTS = {} ;
diff --git a/Java/Callback.pm b/Java/Callback.pm
index a56c7af..bef6980 100644
--- a/Java/Callback.pm
+++ b/Java/Callback.pm
@@ -3,7 +3,7 @@ package Inline::Java::Callback ;
 use strict ;
 use Carp ;
 
-$Inline::Java::Callback::VERSION = '0.48_93' ;
+$Inline::Java::Callback::VERSION = '0.48_94' ;
 
 $Inline::Java::Callback::OBJECT_HOOK = undef ;
 
diff --git a/Java/Class.pm b/Java/Class.pm
index b6f5e17..fca8735 100644
--- a/Java/Class.pm
+++ b/Java/Class.pm
@@ -3,7 +3,7 @@ package Inline::Java::Class ;
 use strict ;
 use Carp ;
 
-$Inline::Java::Class::VERSION = '0.48_93' ;
+$Inline::Java::Class::VERSION = '0.48_94' ;
 
 $Inline::Java::Class::MAX_SCORE = 10 ;
 
diff --git a/Java/JNI.pm b/Java/JNI.pm
index 04d5886..a832e17 100644
--- a/Java/JNI.pm
+++ b/Java/JNI.pm
@@ -4,7 +4,7 @@ package Inline::Java::JNI ;
 
 use strict ;
 
-$Inline::Java::JNI::VERSION = '0.48_93' ;
+$Inline::Java::JNI::VERSION = '0.48_94' ;
 
 use DynaLoader ;
 use Carp ;
diff --git a/Java/JVM.pm b/Java/JVM.pm
index 0325687..993d7b4 100644
--- a/Java/JVM.pm
+++ b/Java/JVM.pm
@@ -8,7 +8,7 @@ use IPC::Open3 ;
 use IO::Socket ;
 use Inline::Java::Portable ;
 
-$Inline::Java::JVM::VERSION = '0.48_93' ;
+$Inline::Java::JVM::VERSION = '0.48_94' ;
 
 my %SIGS = () ;
 
diff --git a/Java/Object.pm b/Java/Object.pm
index 01de9ca..f715aec 100644
--- a/Java/Object.pm
+++ b/Java/Object.pm
@@ -5,7 +5,7 @@ use strict ;
 use Inline::Java::Protocol ;
 use Carp ;
 
-$Inline::Java::Object::VERSION = '0.48_93' ;
+$Inline::Java::Object::VERSION = '0.48_94' ;
 
 # Here we store as keys the knots and as values our blessed private objects
 my $PRIVATES = {} ;
diff --git a/Java/PerlNatives/PerlNatives.pm b/Java/PerlNatives/PerlNatives.pm
index d3011bb..0c184b0 100644
--- a/Java/PerlNatives/PerlNatives.pm
+++ b/Java/PerlNatives/PerlNatives.pm
@@ -2,6 +2,6 @@ package Inline::Java::PerlNatives ;
 
 use strict ;
 
-$Inline::Java::PerlNatives::VERSION = '0.48_93' ;
+$Inline::Java::PerlNatives::VERSION = '0.48_94' ;
 
 1 ;
diff --git a/Java/Portable.pm b/Java/Portable.pm
index d70dd32..e7a4923 100644
--- a/Java/Portable.pm
+++ b/Java/Portable.pm
@@ -9,7 +9,7 @@ use Config ;
 use File::Find ;
 use File::Spec ;
 
-$Inline::Java::Portable::VERSION = '0.48_93' ;
+$Inline::Java::Portable::VERSION = '0.48_94' ;
 
 # Here is some code to figure out if we are running on command.com
 # shell under Windows.
diff --git a/Java/Protocol.pm b/Java/Protocol.pm
index 5b8f6c2..cf3167f 100644
--- a/Java/Protocol.pm
+++ b/Java/Protocol.pm
@@ -5,7 +5,7 @@ use Inline::Java::Object ;
 use Inline::Java::Array ;
 use Carp ;
 
-$Inline::Java::Protocol::VERSION = '0.48_93' ;
+$Inline::Java::Protocol::VERSION = '0.48_94' ;
 
 my %CLASSPATH_ENTRIES = () ;
 
diff --git a/Java/sources/org/perl/inline/java/InlineJavaProtocol.java b/Java/sources/org/perl/inline/java/InlineJavaProtocol.java
index 287e07a..97399ef 100644
--- a/Java/sources/org/perl/inline/java/InlineJavaProtocol.java
+++ b/Java/sources/org/perl/inline/java/InlineJavaProtocol.java
@@ -244,7 +244,7 @@ class InlineJavaProtocol {
 		if (id > 0){
 			o = ijs.GetObject(id) ;
 
-			// Use the class of the object
+			// Use the class sent by Perl (it might be casted)
 			// class_name = o.getClass().getName() ;
 		}
 
@@ -313,7 +313,7 @@ class InlineJavaProtocol {
 		if (id > 0){
 			o = ijs.GetObject(id) ;
 
-			// Use the class of the object
+			// Use the class sent by Perl (it might be casted)
 			// class_name = o.getClass().getName() ;
 		}
 
@@ -369,7 +369,7 @@ class InlineJavaProtocol {
 		if (id > 0){
 			o = ijs.GetObject(id) ;
 
-			// Use the class of the object
+			// Use the class sent by Perl (it might be casted)
 			// class_name = o.getClass().getName() ;
 		}
 
diff --git a/META.yml b/META.yml
index a1722c2..8ac55ae 100644
--- a/META.yml
+++ b/META.yml
@@ -1,7 +1,7 @@
 # http://module-build.sourceforge.net/META-spec.html
 #XXXXXXX This is a prototype!!!  It will change in the future!!! XXXXX#
 name:         Inline-Java
-version:      0.48_92
+version:      0.48_94
 version_from: Java.pm
 installdirs:  site
 requires:

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libinline-java-perl.git



More information about the Pkg-perl-cvs-commits mailing list