Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
abook_check
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abook_android
abook_check
Commits
ebc59094
Commit
ebc59094
authored
Jan 31, 2023
by
Kazuyuki Hida
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
一部のソースを整理
parent
0b758ac4
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
5 deletions
+6
-5
ABVJE_BL/src/jp/agentec/abook/abv/bl/acms/client/json/AcmsJSONParser.java
+1
-2
ABVJE_BL/src/jp/agentec/abook/abv/bl/acms/client/json/UnlockReportJSON.java
+1
-1
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/common/activity/ABVContentViewActivity.java
+4
-2
No files found.
ABVJE_BL/src/jp/agentec/abook/abv/bl/acms/client/json/AcmsJSONParser.java
View file @
ebc59094
...
...
@@ -14,7 +14,6 @@ import org.json.adf.JSONException;
import
org.json.adf.JSONObject
;
import
java.util.Date
;
import
java.util.Locale
;
public
abstract
class
AcmsJSONParser
extends
CloneableObject
{
/**
...
...
@@ -184,7 +183,7 @@ public abstract class AcmsJSONParser extends CloneableObject {
protected
Date
getDateOrNull
(
JSONObject
json
,
String
key
)
{
if
(
json
.
has
(
key
))
{
return
DateTimeUtil
.
toDate
(
json
.
getString
(
key
),
Locale
.
getDefault
().
getLanguage
()
,
DateTimeFormat
.
yyyyMMddHHmmss_hyphen
);
return
DateTimeUtil
.
toDate
(
json
.
getString
(
key
),
"UTC"
,
DateTimeFormat
.
yyyyMMddHHmmss_hyphen
);
}
else
{
return
null
;
}
...
...
ABVJE_BL/src/jp/agentec/abook/abv/bl/acms/client/json/UnlockReportJSON.java
View file @
ebc59094
...
...
@@ -41,5 +41,5 @@ public class UnlockReportJSON extends AcmsCommonJSON {
}
@SuppressWarnings
(
"unused"
)
public
Integer
getReportStatus
()
{
return
reportStatus
;
}
public
int
getReportStatus
()
{
return
reportStatus
;
}
}
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/common/activity/ABVContentViewActivity.java
View file @
ebc59094
...
...
@@ -34,8 +34,9 @@ import java.util.Date;
import
java.util.HashMap
;
import
java.util.Iterator
;
import
java.util.List
;
import
java.util.Locale
;
import
java.util.Map
;
import
java.util.TimeZone
;
import
java.util.concurrent.ConcurrentHashMap
;
import
jp.agentec.abook.abv.bl.acms.type.OperationType
;
...
...
@@ -1364,4 +1365,5 @@ public abstract class ABVContentViewActivity extends ABVAuthenticatedActivity {
}
catch
(
Exception
e
)
{
return
null
;
}
}}
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment