You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by rw...@apache.org on 2010/04/09 04:52:08 UTC

svn commit: r932228 - /geronimo/sandbox/rex/samples/HelloWorld/src/org/apache/geronimo/rex/HelloWorld.java

Author: rwonly
Date: Fri Apr  9 02:52:08 2010
New Revision: 932228

URL: http://svn.apache.org/viewvc?rev=932228&view=rev
Log:
modify the hello function to public signature

Modified:
    geronimo/sandbox/rex/samples/HelloWorld/src/org/apache/geronimo/rex/HelloWorld.java

Modified: geronimo/sandbox/rex/samples/HelloWorld/src/org/apache/geronimo/rex/HelloWorld.java
URL: http://svn.apache.org/viewvc/geronimo/sandbox/rex/samples/HelloWorld/src/org/apache/geronimo/rex/HelloWorld.java?rev=932228&r1=932227&r2=932228&view=diff
==============================================================================
--- geronimo/sandbox/rex/samples/HelloWorld/src/org/apache/geronimo/rex/HelloWorld.java (original)
+++ geronimo/sandbox/rex/samples/HelloWorld/src/org/apache/geronimo/rex/HelloWorld.java Fri Apr  9 02:52:08 2010
@@ -15,7 +15,7 @@ public class HelloWorld {
      * 
      * @return 
      */
-    private static String hello(){
+    public static String hello(){
         return "Hello world! I am Rex.";
     }