Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
yotta
/
pictogram
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
60
Merge Requests
0
Pipelines
Wiki
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
fb8e3736
authored
Jul 07, 2016
by
Arturo Montejo Ráez
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
fixed error in timestamp format in Android's action class
parent
a03a5fb6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
android/Pictogram/Pictogram.iml
android/Pictogram/app/src/main/java/com/yottacode/pictogram/action/Action.java
android/Pictogram/Pictogram.iml
View file @
fb8e3736
...
...
@@ -13,7 +13,7 @@
<content
url=
"file://$MODULE_DIR$"
>
<excludeFolder
url=
"file://$MODULE_DIR$/.gradle"
/>
</content>
<orderEntry
type=
"
jdk"
jdkName=
"1.7"
jdkType=
"JavaSDK
"
/>
<orderEntry
type=
"
inheritedJdk
"
/>
<orderEntry
type=
"sourceFolder"
forTests=
"false"
/>
</component>
</module>
\ No newline at end of file
android/Pictogram/app/src/main/java/com/yottacode/pictogram/action/Action.java
View file @
fb8e3736
...
...
@@ -43,7 +43,7 @@ public abstract class Action {
final
String
param_id_dev
=
"id_dev"
;
final
String
param_timestamp
=
"timestamp"
;
final
Date
currentTime
=
new
Date
();
SimpleDateFormat
datetime
=
new
SimpleDateFormat
(
"yyyy-MM-dd
T
HH:mm:ss.SSSZ"
);
SimpleDateFormat
datetime
=
new
SimpleDateFormat
(
"yyyy-MM-dd
HH:mm:ss.SSSZ"
);
try
{
JSONObject
jsonObject
=
new
JSONObject
()
.
put
(
param_id_stu
,
PCBcontext
.
getPcbdb
().
getCurrentUser
().
get_id_stu
())
...
...
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