Author: fmui
Date: Tue Apr  5 15:22:42 2016
New Revision: 1737846

URL: http://svn.apache.org/viewvc?rev=1737846&view=rev
Log:
fixed typos

Modified:
    
chemistry/opencmis/trunk/chemistry-opencmis-client/chemistry-opencmis-client-bindings/src/main/java/org/apache/chemistry/opencmis/client/bindings/spi/atompub/RepositoryServiceImpl.java

Modified: 
chemistry/opencmis/trunk/chemistry-opencmis-client/chemistry-opencmis-client-bindings/src/main/java/org/apache/chemistry/opencmis/client/bindings/spi/atompub/RepositoryServiceImpl.java
URL: 
http://svn.apache.org/viewvc/chemistry/opencmis/trunk/chemistry-opencmis-client/chemistry-opencmis-client-bindings/src/main/java/org/apache/chemistry/opencmis/client/bindings/spi/atompub/RepositoryServiceImpl.java?rev=1737846&r1=1737845&r2=1737846&view=diff
==============================================================================
--- 
chemistry/opencmis/trunk/chemistry-opencmis-client/chemistry-opencmis-client-bindings/src/main/java/org/apache/chemistry/opencmis/client/bindings/spi/atompub/RepositoryServiceImpl.java
 (original)
+++ 
chemistry/opencmis/trunk/chemistry-opencmis-client/chemistry-opencmis-client-bindings/src/main/java/org/apache/chemistry/opencmis/client/bindings/spi/atompub/RepositoryServiceImpl.java
 Tue Apr  5 15:22:42 2016
@@ -71,7 +71,7 @@ public class RepositoryServiceImpl exten
         List<RepositoryInfo> repositoryInfos = 
getRepositoriesInternal(repositoryId);
 
         if (repositoryInfos.isEmpty()) {
-            throw new CmisObjectNotFoundException("Repository '" + 
repositoryId + "'not found!");
+            throw new CmisObjectNotFoundException("Repository '" + 
repositoryId + "' not found!");
         }
 
         // find the repository
@@ -85,7 +85,7 @@ public class RepositoryServiceImpl exten
             }
         }
 
-        throw new CmisObjectNotFoundException("Repository '" + repositoryId + 
"'not found!");
+        throw new CmisObjectNotFoundException("Repository '" + repositoryId + 
"' not found!");
     }
 
     @Override
@@ -235,7 +235,7 @@ public class RepositoryServiceImpl exten
 
         String parentId = type.getParentTypeId();
         if (parentId == null) {
-            throw new CmisInvalidArgumentException("Type definition has no 
parent type id!");
+            throw new CmisInvalidArgumentException("Type definition has no 
parent type ID!");
         }
 
         // find the link
@@ -293,7 +293,7 @@ public class RepositoryServiceImpl exten
 
         String typeId = type.getId();
         if (typeId == null) {
-            throw new CmisInvalidArgumentException("Type definition has no 
type id!");
+            throw new CmisInvalidArgumentException("Type definition has no 
type ID!");
         }
 
         // find the link


Reply via email to