diff options
author | Sven Gothel <[email protected]> | 2012-10-16 07:50:45 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2012-10-16 07:50:45 +0200 |
commit | 9ad5f1ea9f4ee9908fe5c5c422b287397b63e551 (patch) | |
tree | 38becf6642a670e1f08ffd206c26201761333a7b /src/jogl/classes/jogamp/opengl/util | |
parent | 658d269db957cdb986f2da2fbe15d2441b6f03c4 (diff) | |
parent | f15b5df4114e46b4c6a968b75aebb6014afc1806 (diff) |
Merge remote-tracking branch 'hharrison/master'
Diffstat (limited to 'src/jogl/classes/jogamp/opengl/util')
-rw-r--r-- | src/jogl/classes/jogamp/opengl/util/pngj/chunks/PngChunkTIME.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jogl/classes/jogamp/opengl/util/pngj/chunks/PngChunkTIME.java b/src/jogl/classes/jogamp/opengl/util/pngj/chunks/PngChunkTIME.java index 37e617acb..fa61f6237 100644 --- a/src/jogl/classes/jogamp/opengl/util/pngj/chunks/PngChunkTIME.java +++ b/src/jogl/classes/jogamp/opengl/util/pngj/chunks/PngChunkTIME.java @@ -75,7 +75,7 @@ public class PngChunkTIME extends PngChunk { /** format YYYY/MM/DD HH:mm:SS */
public String getAsString() {
- return String.format("%04/%02d/%02d %02d:%02d:%02d", year, mon, day, hour, min, sec);
+ return String.format("%04d/%02d/%02d %02d:%02d:%02d", year, mon, day, hour, min, sec);
}
|