Modified: cocoon/trunk/src/java/org/apache/cocoon/components/treeprocessor/sitemap/VPCNode.java
URL: http://svn.apache.org/viewcvs/cocoon/trunk/src/java/org/apache/cocoon/components/treeprocessor/sitemap/VPCNode.java?view=diff&r1=160322&r2=160323
==============================================================================
--- cocoon/trunk/src/java/org/apache/cocoon/components/treeprocessor/sitemap/VPCNode.java (original)
+++ cocoon/trunk/src/java/org/apache/cocoon/components/treeprocessor/sitemap/VPCNode.java Wed Apr 6 13:06:56 2005
@@ -1,40 +1,40 @@
-/*
- * Copyright 1999-2004 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.
- * You may obtain a copy of the License at
- * - * http://www.apache.org/licenses/LICENSE-2.0
- * - * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.apache.cocoon.components.treeprocessor.sitemap;
-
-import java.util.Set;
-
-import org.apache.cocoon.components.treeprocessor.NamedContainerNode;
-
-/**
- * A VPC node that just invokes its children and store what parameters are sources.
- *
- * @version $Id$
- */
-
-public class VPCNode extends NamedContainerNode {
-
- Set sourceSet;
-
- public VPCNode(String name, Set sourceSet) {
- super(name);
- this.sourceSet = sourceSet;
- }
-
- public Set getSources() {
- return this.sourceSet;
- }
-}
+/*
+ * Copyright 1999-2004 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.
+ * You may obtain a copy of the License at
+ * + * http://www.apache.org/licenses/LICENSE-2.0
+ * + * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.cocoon.components.treeprocessor.sitemap;
+
+import java.util.Set;
+
+import org.apache.cocoon.components.treeprocessor.NamedContainerNode;
+
+/**
+ * A VPC node that just invokes its children and store what parameters are sources.
+ *
+ * @version $Id$
+ */
+
+public class VPCNode extends NamedContainerNode {
+
+ Set sourceSet;
+
+ public VPCNode(String name, Set sourceSet) {
+ super(name);
+ this.sourceSet = sourceSet;
+ }
+
+ public Set getSources() {
+ return this.sourceSet;
+ }
+}
etc. So, what has changed? (I bet you forgot about svn eol-style property)
Vadim