Skip to content

Commit

Permalink
Added another line with missing fixed milliseconds
Browse files Browse the repository at this point in the history
  • Loading branch information
or-shachar committed Sep 18, 2017
1 parent 87f49d7 commit 4b34ad2
Showing 1 changed file with 1 addition and 0 deletions.
Expand Up @@ -500,6 +500,7 @@ private Artifact getArtifact( DirectoryEntry parent, String name )
cal.set( Calendar.HOUR_OF_DAY, Integer.parseInt( matcher.group( 5 ) ) );
cal.set( Calendar.MINUTE, Integer.parseInt( matcher.group( 6 ) ) );
cal.set( Calendar.SECOND, Integer.parseInt( matcher.group( 7 ) ) );
cal.set( Calendar.MILLISECOND, 0);
long timestamp = cal.getTimeInMillis();
int buildNumber = Integer.parseInt( matcher.group( 8 ) );

Expand Down

0 comments on commit 4b34ad2

Please sign in to comment.