You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by hi...@apache.org on 2008/09/15 10:20:34 UTC

svn commit: r695377 - /harmony/enhanced/classlib/trunk/modules/jndi/src/test/java/org/apache/harmony/jndi/internal/parser/LdapRdnParserTest.java

Author: hindessm
Date: Mon Sep 15 01:20:34 2008
New Revision: 695377

URL: http://svn.apache.org/viewvc?rev=695377&view=rev
Log:
Fixing properties on file added in r694634.  Tony please check your svn
auto-props settings as this should happen automatically.

Modified:
    harmony/enhanced/classlib/trunk/modules/jndi/src/test/java/org/apache/harmony/jndi/internal/parser/LdapRdnParserTest.java   (contents, props changed)

Modified: harmony/enhanced/classlib/trunk/modules/jndi/src/test/java/org/apache/harmony/jndi/internal/parser/LdapRdnParserTest.java
URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/modules/jndi/src/test/java/org/apache/harmony/jndi/internal/parser/LdapRdnParserTest.java?rev=695377&r1=695376&r2=695377&view=diff
==============================================================================
--- harmony/enhanced/classlib/trunk/modules/jndi/src/test/java/org/apache/harmony/jndi/internal/parser/LdapRdnParserTest.java (original)
+++ harmony/enhanced/classlib/trunk/modules/jndi/src/test/java/org/apache/harmony/jndi/internal/parser/LdapRdnParserTest.java Mon Sep 15 01:20:34 2008
@@ -1,38 +1,38 @@
-/* 
- *  Licensed to the Apache Software Foundation (ASF) under one or more 
- *  contributor license agreements.  See the NOTICE file distributed with 
- *  this work for additional information regarding copyright ownership. 
- *  The ASF licenses this file to You 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.harmony.jndi.internal.parser;
-
-import java.util.List;
-
-import javax.naming.directory.Attribute;
-
-import junit.framework.TestCase;
-
-public class LdapRdnParserTest extends TestCase {
-    public void test_getList() throws Exception {
-        LdapRdnParser parser1 = new LdapRdnParser("cn=test");
-        LdapRdnParser parser2 = new LdapRdnParser("o=harmony+sn=test");
-
-        List list = parser1.getList();
-
-        assertEquals(1, list.size());
-        assertEquals("cn", ((Attribute) list.get(0)).getID()); 
-        assertEquals("test", ((Attribute) list.get(0)).get());
-    }
-}
+/* 
+ *  Licensed to the Apache Software Foundation (ASF) under one or more 
+ *  contributor license agreements.  See the NOTICE file distributed with 
+ *  this work for additional information regarding copyright ownership. 
+ *  The ASF licenses this file to You 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.harmony.jndi.internal.parser;
+
+import java.util.List;
+
+import javax.naming.directory.Attribute;
+
+import junit.framework.TestCase;
+
+public class LdapRdnParserTest extends TestCase {
+    public void test_getList() throws Exception {
+        LdapRdnParser parser1 = new LdapRdnParser("cn=test");
+        LdapRdnParser parser2 = new LdapRdnParser("o=harmony+sn=test");
+
+        List list = parser1.getList();
+
+        assertEquals(1, list.size());
+        assertEquals("cn", ((Attribute) list.get(0)).getID()); 
+        assertEquals("test", ((Attribute) list.get(0)).get());
+    }
+}

Propchange: harmony/enhanced/classlib/trunk/modules/jndi/src/test/java/org/apache/harmony/jndi/internal/parser/LdapRdnParserTest.java
------------------------------------------------------------------------------
    svn:eol-style = native