am 733a023b: Remove redundant code.

* commit '733a023b64a9ec7f2cbdb336b4c2e493ddc0e116':
  Remove redundant code.
main
Keisuke Kuroyanagi 2014-08-27 12:36:38 +00:00 committed by Android Git Automerger
commit 4afcb18f51
1 changed files with 0 additions and 2 deletions

View File

@ -65,8 +65,6 @@ void WordProperty::outputProperties(JNIEnv *const env, jintArray outCodePoints,
for (const auto &shortcut : mUnigramProperty.getShortcuts()) {
const std::vector<int> *const targetCodePoints = shortcut.getTargetCodePoints();
jintArray shortcutTargetCodePointArray = env->NewIntArray(targetCodePoints->size());
env->SetIntArrayRegion(shortcutTargetCodePointArray, 0 /* start */,
targetCodePoints->size(), targetCodePoints->data());
JniDataUtils::outputCodePoints(env, shortcutTargetCodePointArray, 0 /* start */,
targetCodePoints->size(), targetCodePoints->data(), targetCodePoints->size(),
false /* needsNullTermination */);