You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ra...@apache.org on 2008/04/26 03:25:21 UTC

svn commit: r651769 - /commons/proper/scxml/branches/J6/src/main/java/org/apache/commons/scxml/env/javascript/JSContext.java

Author: rahul
Date: Fri Apr 25 18:25:18 2008
New Revision: 651769

URL: http://svn.apache.org/viewvc?rev=651769&view=rev
Log:
Add serialVersionUID and reformat code (use 4 space indentation).

Modified:
    commons/proper/scxml/branches/J6/src/main/java/org/apache/commons/scxml/env/javascript/JSContext.java

Modified: commons/proper/scxml/branches/J6/src/main/java/org/apache/commons/scxml/env/javascript/JSContext.java
URL: http://svn.apache.org/viewvc/commons/proper/scxml/branches/J6/src/main/java/org/apache/commons/scxml/env/javascript/JSContext.java?rev=651769&r1=651768&r2=651769&view=diff
==============================================================================
--- commons/proper/scxml/branches/J6/src/main/java/org/apache/commons/scxml/env/javascript/JSContext.java (original)
+++ commons/proper/scxml/branches/J6/src/main/java/org/apache/commons/scxml/env/javascript/JSContext.java Fri Apr 25 18:25:18 2008
@@ -30,26 +30,29 @@
  */
 public class JSContext extends SimpleContext {
 
-       // CONSTRUCTORS
+    /** Serial version UID. */
+    private static final long serialVersionUID = 1L;
 
-       /**
-        * Default constructor - just invokes the SimpleContext default
-        * constructor.
-        */
-       public JSContext() {
-           super();
-       }
+    // CONSTRUCTORS
 
-       /**
-        * Child constructor. Just invokes the identical SimpleContext
-	* constructor.
-        *
-        * @param parent Parent context for this context.
-        *
-        */
-       public JSContext(Context parent) {
-           super(parent);
-       }
+    /**
+     * Default constructor - just invokes the SimpleContext default
+     * constructor.
+     */
+    public JSContext() {
+       super();
+    }
+
+    /**
+     * Child constructor. Just invokes the identical SimpleContext
+     * constructor.
+     *
+     * @param parent Parent context for this context.
+     *
+     */
+    public JSContext(Context parent) {
+       super(parent);
+   }
 
 }