Skip to content

Commit

Permalink
compatibility update
Browse files Browse the repository at this point in the history
  • Loading branch information
dghgit committed Dec 27, 2017
1 parent 12123b4 commit 85563a9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ else if (hasFractionalSeconds())
byte[] derTime = new byte[ind + 1];

System.arraycopy(time, 0, derTime, 0, ind);
derTime[ind] = 'Z';
derTime[ind] = (byte)'Z';

return derTime;
}
Expand All @@ -84,7 +84,7 @@ else if (hasFractionalSeconds())
byte[] derTime = new byte[ind + 2];

System.arraycopy(time, 0, derTime, 0, ind + 1);
derTime[ind + 1] = 'Z';
derTime[ind + 1] = (byte)'Z';

return derTime;
}
Expand Down

0 comments on commit 85563a9

Please sign in to comment.