summaryrefslogtreecommitdiff
path: root/src/corefx/System.Globalization.Native/normalization.cpp
diff options
context:
space:
mode:
authorJan Kotas <jkotas@microsoft.com>2016-02-08 14:32:32 -0800
committerJan Kotas <jkotas@microsoft.com>2016-02-08 14:32:32 -0800
commit93c5ea9014f1bf260689a19b069275ed7fc782b0 (patch)
treef7616290c1589c2cc931b87c3561829d08d22713 /src/corefx/System.Globalization.Native/normalization.cpp
parentcf663830ffe764fc3520da8ccc09e59329084c61 (diff)
downloadcoreclr-93c5ea9014f1bf260689a19b069275ed7fc782b0.tar.gz
coreclr-93c5ea9014f1bf260689a19b069275ed7fc782b0.tar.bz2
coreclr-93c5ea9014f1bf260689a19b069275ed7fc782b0.zip
Revert "Add un-prefixed signatures as temporary workaround"
This reverts commit fb80bad2ed19970472ddefe539520abef42a52d0.
Diffstat (limited to 'src/corefx/System.Globalization.Native/normalization.cpp')
-rw-r--r--src/corefx/System.Globalization.Native/normalization.cpp18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/corefx/System.Globalization.Native/normalization.cpp b/src/corefx/System.Globalization.Native/normalization.cpp
index 0115af28ca..f96f5ee315 100644
--- a/src/corefx/System.Globalization.Native/normalization.cpp
+++ b/src/corefx/System.Globalization.Native/normalization.cpp
@@ -65,15 +65,6 @@ extern "C" int32_t GlobalizationNative_IsNormalized(
}
}
-// TODO: temporarily keeping the un-prefixed signature of this method
-// to keep tests running in CI. This will be removed once the corefx managed assemblies
-// are synced up with the native assemblies.
-extern "C" int32_t IsNormalized(
- NormalizationForm normalizationForm, const UChar* lpStr, int32_t cwStrLength)
-{
- return GlobalizationNative_IsNormalized(normalizationForm, lpStr, cwStrLength);
-}
-
/*
Function:
NormalizeString
@@ -95,12 +86,3 @@ extern "C" int32_t GlobalizationNative_NormalizeString(
return (U_SUCCESS(err) || (err == U_BUFFER_OVERFLOW_ERROR)) ? normalizedLen : 0;
}
-
-// TODO: temporarily keeping the un-prefixed signature of this method
-// to keep tests running in CI. This will be removed once the corefx managed assemblies
-// are synced up with the native assemblies.
-extern "C" int32_t NormalizeString(
- NormalizationForm normalizationForm, const UChar* lpSrc, int32_t cwSrcLength, UChar* lpDst, int32_t cwDstLength)
-{
- return GlobalizationNative_NormalizeString(normalizationForm, lpSrc, cwSrcLength, lpDst, cwDstLength);
-}