You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by sk...@apache.org on 2005/02/07 08:54:03 UTC

svn commit: r151706 - jakarta/commons/proper/digester/branches/digester2/src/java/org/apache/commons/digester2/Context.java

Author: skitching
Date: Sun Feb  6 23:54:02 2005
New Revision: 151706

URL: http://svn.apache.org/viewcvs?view=rev&rev=151706
Log:
Move constructor to after member declarations
Update copyright to 2005
Add svm:keywords property

Modified:
    jakarta/commons/proper/digester/branches/digester2/src/java/org/apache/commons/digester2/Context.java   (contents, props changed)

Modified: jakarta/commons/proper/digester/branches/digester2/src/java/org/apache/commons/digester2/Context.java
URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/digester/branches/digester2/src/java/org/apache/commons/digester2/Context.java?view=diff&r1=151705&r2=151706
==============================================================================
--- jakarta/commons/proper/digester/branches/digester2/src/java/org/apache/commons/digester2/Context.java (original)
+++ jakarta/commons/proper/digester/branches/digester2/src/java/org/apache/commons/digester2/Context.java Sun Feb  6 23:54:02 2005
@@ -1,6 +1,6 @@
-/* $Id: $
+/* $Id$
  *
- * Copyright 2001-2004 The Apache Software Foundation.
+ * Copyright 2001-2005 The Apache Software Foundation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -39,16 +39,6 @@
 
 public class Context {
 
-    // --------------------------------------------------------- Constructors
-
-    /**
-     * Construct a new Context.
-     */
-    public Context(SAXHandler saxHandler, Log log) {
-        this.saxHandler = saxHandler;
-        this.log = log;
-    }
-
     // --------------------------------------------------- 
     // Instance Variables
     // --------------------------------------------------- 
@@ -109,6 +99,18 @@
      * CallParamAction.
      */
     private ArrayStack params = new ArrayStack();
+
+    // --------------------------------------------------------- 
+    // Constructors
+    // --------------------------------------------------------- 
+
+    /**
+     * Construct a new Context.
+     */
+    public Context(SAXHandler saxHandler, Log log) {
+        this.saxHandler = saxHandler;
+        this.log = log;
+    }
 
     // ---------------------------------------------------
     // Properties

Propchange: jakarta/commons/proper/digester/branches/digester2/src/java/org/apache/commons/digester2/Context.java
------------------------------------------------------------------------------
    svn:keywords = Id



---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org