summaryrefslogtreecommitdiff
path: root/include/comphelper/string.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-01-02 13:21:32 +0100
committerStephan Bergmann <sbergman@redhat.com>2015-01-02 14:22:21 +0100
commitf8922b67a4dc1ff0b889f33d2407584aed5d2e36 (patch)
treec3dbbc81468176b79e03b8222bb174fc24a30e16 /include/comphelper/string.hxx
parentc7531408b3ef4b2d284edf35ed983c23e7585231 (diff)
Remove unnecessary comphelper::string::getToken
Change-Id: I49192637121441b9a1980350b9bb32cd995d4386
Diffstat (limited to 'include/comphelper/string.hxx')
-rw-r--r--include/comphelper/string.hxx32
1 files changed, 0 insertions, 32 deletions
diff --git a/include/comphelper/string.hxx b/include/comphelper/string.hxx
index b062d7cd2677..b9680372c21b 100644
--- a/include/comphelper/string.hxx
+++ b/include/comphelper/string.hxx
@@ -168,38 +168,6 @@ COMPHELPER_DLLPUBLIC OString strip(const OString &rIn,
COMPHELPER_DLLPUBLIC OUString strip(const OUString &rIn,
sal_Unicode c);
-/** Returns a token in an OString
-
- @deprecated Use OString::getToken(nToken, cTok) instead.
-
- @param rIn the input OString
- @param nToken the number of the token to return
- @param cTok the character which separate the tokens.
- @return the token if token is negative or doesn't exist an empty token
- is returned
-*/
-inline OString getToken(const OString &rIn,
- sal_Int32 nToken, sal_Char cTok)
-{
- return rIn.getToken(nToken, cTok);
-}
-
-/** Returns a token in an OUString
-
- @deprecated Use OUString::getToken(nToken, cTok) instead.
-
- @param rIn the input OUString
- @param nToken the number of the token to return
- @param cTok the character which separate the tokens.
- @return the token if token is negative or doesn't exist an empty token
- is returned
-*/
-inline OUString getToken(const OUString &rIn,
- sal_Int32 nToken, sal_Unicode cTok)
-{
- return rIn.getToken(nToken, cTok);
-}
-
/** Returns number of tokens in an OUString
@param rIn the input OString