Commit bb556ea2 by Lee Munkyeong

コードレビュー対応

parent 9cbda6fd
...@@ -1310,8 +1310,6 @@ public abstract class ABVAuthenticatedActivity extends ABVActivity implements Co ...@@ -1310,8 +1310,6 @@ public abstract class ABVAuthenticatedActivity extends ABVActivity implements Co
*/ */
public String syncOperation(final long operationId, int reportType, boolean buttonEventFlag) { public String syncOperation(final long operationId, int reportType, boolean buttonEventFlag) {
final StringBuilder errorMsg = new StringBuilder(); final StringBuilder errorMsg = new StringBuilder();
Logger.i(TAG, "---sync start");
try { try {
//コンテンツダウンロード関連プログレスバー値設定 //コンテンツダウンロード関連プログレスバー値設定
progressDialogHorizontal.setProgress(20); progressDialogHorizontal.setProgress(20);
...@@ -1413,7 +1411,6 @@ public abstract class ABVAuthenticatedActivity extends ABVActivity implements Co ...@@ -1413,7 +1411,6 @@ public abstract class ABVAuthenticatedActivity extends ABVActivity implements Co
closeProgressPopup(); closeProgressPopup();
} }
}); });
Logger.i(TAG, "---sync end");
} }
return errorMsg.length() > 0 ? errorMsg.toString() : null; return errorMsg.length() > 0 ? errorMsg.toString() : null;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment