Commit f2844854 by Kazuyuki Hida

設定やメソッド名の修正

parent 4d3505cc
...@@ -12,12 +12,12 @@ public class WorkingReportDao extends AbstractDao { ...@@ -12,12 +12,12 @@ public class WorkingReportDao extends AbstractDao {
@Override @Override
protected WorkingReportDto convert(Cursor cursor) { protected WorkingReportDto convert(Cursor cursor) {
return new WorkingReportDto( return new WorkingReportDto(
longOrNull(cursor, "operation_id"), getLongOrNull(cursor, "operation_id"),
intOrNull(cursor, "count") getIntOrNull(cursor, "count")
); );
} }
private Long longOrNull(Cursor cursor, String name) { private Long getLongOrNull(Cursor cursor, String name) {
int column = cursor.getColumnIndex(name); int column = cursor.getColumnIndex(name);
if (column < 0) { if (column < 0) {
return null; return null;
...@@ -26,7 +26,7 @@ public class WorkingReportDao extends AbstractDao { ...@@ -26,7 +26,7 @@ public class WorkingReportDao extends AbstractDao {
} }
} }
private Integer intOrNull(Cursor cursor, String name) { private Integer getIntOrNull(Cursor cursor, String name) {
int column = cursor.getColumnIndex(name); int column = cursor.getColumnIndex(name);
if (column < 0) { if (column < 0) {
return null; return null;
......
...@@ -37,10 +37,10 @@ app_versioncode=1 ...@@ -37,10 +37,10 @@ app_versioncode=1
# abvEnvironments.xml # abvEnvironments.xml
#cms server #cms server
#acms_address=https://check.abookcloud.com/acms acms_address=https://check.abookcloud.com/acms
#download_server_address=https://check.abookcloud.com/acms download_server_address=https://check.abookcloud.com/acms
acms_address=https://abook188-1.abook.bz/acms #acms_address=https://abook188-1.abook.bz/acms
download_server_address=https://abook188-1.abook.bz/acms #download_server_address=https://abook188-1.abook.bz/acms
#acms_address=http://10.0.2.2:8080/acms #acms_address=http://10.0.2.2:8080/acms
#download_server_address=http://10.0.2.2:8080/acms #download_server_address=http://10.0.2.2:8080/acms
...@@ -96,8 +96,8 @@ hope_page=http://www.sato.co.jp ...@@ -96,8 +96,8 @@ hope_page=http://www.sato.co.jp
contact_email=grp-atform_support@sato-global.com contact_email=grp-atform_support@sato-global.com
#Log Settings #Log Settings
#log_level=2 log_level=2
log_level=1 #log_level=1
default_log_name=abvje default_log_name=abvje
#エラーレポート/Exportログ送信方法 1:acms 2:平文メール(開発・テスト時のみ) 3:暗号化添付メール #エラーレポート/Exportログ送信方法 1:acms 2:平文メール(開発・テスト時のみ) 3:暗号化添付メール
......
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