From: Aron Roberts Date: Thu, 8 Jul 2010 03:46:33 +0000 (+0000) Subject: NOJIRA: Fixed trivial typo in name of constant X-Git-Url: https://git.aero2k.de/?a=commitdiff_plain;h=1cbd8cd10135157354b71effb3f988af1b514533;p=tmp%2Fjakarta-migration.git NOJIRA: Fixed trivial typo in name of constant --- diff --git a/services/client/src/main/java/org/collectionspace/services/client/AbstractServiceClientImpl.java b/services/client/src/main/java/org/collectionspace/services/client/AbstractServiceClientImpl.java index d90f305b8..a70ceaf87 100644 --- a/services/client/src/main/java/org/collectionspace/services/client/AbstractServiceClientImpl.java +++ b/services/client/src/main/java/org/collectionspace/services/client/AbstractServiceClientImpl.java @@ -53,7 +53,7 @@ public abstract class AbstractServiceClientImpl implements /** * The character used to separate the words in a part label */ - public static final String PART_LABEL_SEPERATOR = "_"; + public static final String PART_LABEL_SEPARATOR = "_"; /** The Constant PART_COMMON_LABEL. */ public static final String PART_COMMON_LABEL = "common"; /** The properties. */ @@ -80,7 +80,7 @@ public abstract class AbstractServiceClientImpl implements * @return the common part name */ public String getCommonPartName(String servicePathComponent) { - return servicePathComponent + PART_LABEL_SEPERATOR + PART_COMMON_LABEL; + return servicePathComponent + PART_LABEL_SEPARATOR + PART_COMMON_LABEL; } /**