Revert "[Tizen] Add text wrapping hyphen mode support"
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / text / text-view.cpp
index 2f74699..83ad28f 100644 (file)
@@ -388,35 +388,6 @@ bool View::IsUnderlineEnabled() const
   return false;
 }
 
-const GlyphInfo* View::GetHyphens() const
-{
-  if(mImpl->mVisualModel)
-  {
-    return mImpl->mVisualModel->mHyphen.glyph.Begin();
-  }
-
-  return nullptr;
-}
-
-const Length* View::GetHyphenIndices() const
-{
-  if(mImpl->mVisualModel)
-  {
-    return mImpl->mVisualModel->mHyphen.index.Begin();
-  }
-
-  return nullptr;
-}
-
-Length View::GetHyphensCount() const
-{
-  if(mImpl->mVisualModel)
-  {
-    return mImpl->mVisualModel->mHyphen.glyph.Size();
-  }
-
-  return 0;
-}
 float View::GetUnderlineHeight() const
 {
   if(mImpl->mVisualModel)