There was an error while loading. Please reload this page.
1 parent 32ef744 commit 34c8762Copy full SHA for 34c8762
1 file changed
src/main/groovy/net/minecraftforge/forgedev/Util.java
@@ -180,7 +180,7 @@ public static String iso8601Now() {
180
public static String iso8601(Date self) {
181
var format = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ssZ");
182
var result = format.format(self);
183
- return result.substring(0, 21) + ':' + result.substring(22);
+ return result.substring(0, 22) + ':' + result.substring(22);
184
}
185
186
public static <R extends HasConfigurableValue> R finalize(Project project, R ret) {
0 commit comments