You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jackrabbit.apache.org by tr...@apache.org on 2004/12/17 11:52:13 UTC

svn commit: r122633 - /incubator/jackrabbit/trunk/src/java/org/apache/jackrabbit/core/xml/SysViewImportHandler.java

Author: tripod
Date: Fri Dec 17 02:52:12 2004
New Revision: 122633

URL: http://svn.apache.org/viewcvs?view=rev&rev=122633
Log:
- javasource indentation corrupt?
Modified:
   incubator/jackrabbit/trunk/src/java/org/apache/jackrabbit/core/xml/SysViewImportHandler.java

Modified: incubator/jackrabbit/trunk/src/java/org/apache/jackrabbit/core/xml/SysViewImportHandler.java
Url: http://svn.apache.org/viewcvs/incubator/jackrabbit/trunk/src/java/org/apache/jackrabbit/core/xml/SysViewImportHandler.java?view=diff&rev=122633&p1=incubator/jackrabbit/trunk/src/java/org/apache/jackrabbit/core/xml/SysViewImportHandler.java&r1=122632&p2=incubator/jackrabbit/trunk/src/java/org/apache/jackrabbit/core/xml/SysViewImportHandler.java&r2=122633
==============================================================================
--- incubator/jackrabbit/trunk/src/java/org/apache/jackrabbit/core/xml/SysViewImportHandler.java	(original)
+++ incubator/jackrabbit/trunk/src/java/org/apache/jackrabbit/core/xml/SysViewImportHandler.java	Fri Dec 17 02:52:12 2004
@@ -253,13 +253,13 @@
                         createNode(current);
                     }
                 } else if (currentPropName.equals(VersionManager.PROPNAME_BASE_VERSION)) {
-// ignore so far
+                    // ignore so far
                 } else if (currentPropName.equals(VersionManager.PROPNAME_VERSION_HISTORY)) {
-// ignore so far
+                    // ignore so far
                 } else if (currentPropName.equals(VersionManager.PROPNAME_PREDECESSORS)) {
-// ignore so far
+                    // ignore so far
                 } else if (currentPropName.equals(VersionManager.PROPNAME_IS_CHECKED_OUT)) {
-// ignore so far
+                    // ignore so far
                 } else {
                     // non-system property encountered; we can assume that all
                     // required system properties have been collected by now
@@ -303,7 +303,7 @@
                             // try setting single-value
                             current.node.setProperty(currentPropName, vals[0]);
                         } catch (ValueFormatException vfe) {
-// try setting value array
+                            // try setting value array
                             current.node.setProperty(currentPropName, vals);
                         } catch (ConstraintViolationException vfe) {
                             // try setting value array
@@ -313,7 +313,7 @@
                         // can only be multi-valued (n == 0 || n > 1)
                         current.node.setProperty(currentPropName, vals);
                     }
-// check if reference for later resolution
+                    // check if reference for later resolution
                     if (currentPropType == PropertyType.REFERENCE) {
                         references.add(current.node.getProperty(currentPropName));
                     }
@@ -347,7 +347,7 @@
             state.node = state.parent.getNode(state.nodeName);
             NodeDef def = state.node.getDefinition();
             if (def.isProtected()) {
-// @todo how to handle protected/auto-created child node?
+                // @todo how to handle protected/auto-created child node?
 
             } else if (def.isAutoCreate()) {
                 // @todo how to handle protected/auto-created child node?