Author: jens
Date: Mon Mar 13 09:46:35 2017
New Revision: 1786650

URL: http://svn.apache.org/viewvc?rev=1786650&view=rev
Log:
InMemory: fix a small typo (CMIS-1014)

Modified:
    
chemistry/opencmis/trunk/chemistry-opencmis-server/chemistry-opencmis-server-inmemory/src/main/java/org/apache/chemistry/opencmis/inmemory/NameValidator.java

Modified: 
chemistry/opencmis/trunk/chemistry-opencmis-server/chemistry-opencmis-server-inmemory/src/main/java/org/apache/chemistry/opencmis/inmemory/NameValidator.java
URL: 
http://svn.apache.org/viewvc/chemistry/opencmis/trunk/chemistry-opencmis-server/chemistry-opencmis-server-inmemory/src/main/java/org/apache/chemistry/opencmis/inmemory/NameValidator.java?rev=1786650&r1=1786649&r2=1786650&view=diff
==============================================================================
--- 
chemistry/opencmis/trunk/chemistry-opencmis-server/chemistry-opencmis-server-inmemory/src/main/java/org/apache/chemistry/opencmis/inmemory/NameValidator.java
 (original)
+++ 
chemistry/opencmis/trunk/chemistry-opencmis-server/chemistry-opencmis-server-inmemory/src/main/java/org/apache/chemistry/opencmis/inmemory/NameValidator.java
 Mon Mar 13 09:46:35 2017
@@ -73,7 +73,7 @@ public final class NameValidator {
         for (int i = 0; i < s.length(); i++) {
             char c = s.charAt(i);
             if (c == '\\' || c == '/' || c == '\"' || c == ':' || c == '*' || 
c == '?' || c == '<' || c == '>'
-                    && c == '|') {
+                    || c == '|') {
                 return false;
             }
         }


Reply via email to