From 2831b42f505b8cbfcbcc0867fc72cfe4928253f4 Mon Sep 17 00:00:00 2001 From: Sanjay Dalal Date: Wed, 21 Oct 2009 19:17:52 +0000 Subject: [PATCH] NOJIRA fixed typo in error message --- .../services/nuxeo/client/java/RepositoryJavaClient.java | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/services/common/src/main/java/org/collectionspace/services/nuxeo/client/java/RepositoryJavaClient.java b/services/common/src/main/java/org/collectionspace/services/nuxeo/client/java/RepositoryJavaClient.java index afa816048..152e946d4 100644 --- a/services/common/src/main/java/org/collectionspace/services/nuxeo/client/java/RepositoryJavaClient.java +++ b/services/common/src/main/java/org/collectionspace/services/nuxeo/client/java/RepositoryJavaClient.java @@ -79,8 +79,7 @@ public class RepositoryJavaClient implements RepositoryClient { if(nuxeoWspaceId == null){ throw new DocumentNotFoundException( "Unable to find workspace for service " + ctx.getServiceName() + - " check if the mapping exists in service-config.xml or" + - " the the mapped workspace exists in the Nuxeo repository"); + " check if the workspace exists in the Nuxeo repository"); } RepositoryInstance repoSession = null; try{ @@ -191,8 +190,8 @@ public class RepositoryJavaClient implements RepositoryClient { if(nuxeoWspaceId == null){ throw new DocumentNotFoundException( "Unable to find workspace for service " + - ctx.getServiceName() + " check if the mapping exists in service-config.xml or " + - " the the mapped workspace exists in the Nuxeo repository"); + ctx.getServiceName() + + " check if the workspace exists in the Nuxeo repository"); } RepositoryInstance repoSession = null; -- 2.47.3