Skip to content

Commit fb2b197

Browse files
committed
Fix @SInCE 5.3 -> 5.2
1 parent 1bc24de commit fb2b197

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/main/java/com/fasterxml/uuid/impl/TimeBasedEpochGenerator.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public class TimeBasedEpochGenerator extends NoArgGenerator
3737
/**
3838
* Source for random numbers used to fill a byte array with entropy.
3939
*
40-
* @since 5.3 (replaced earlier {@code java.util.Random _random})
40+
* @since 5.2 (replaced earlier {@code java.util.Random _random})
4141
*/
4242
protected final Consumer<byte[]> _randomNextBytes;
4343

@@ -87,7 +87,7 @@ public TimeBasedEpochGenerator(Random rnd, UUIDClock clock)
8787
* for example, JDK's {@code SecureRandom::nextBytes}.
8888
* @param clock clock Object used for accessing current time to use for generation
8989
*
90-
* @since 5.3
90+
* @since 5.2
9191
*/
9292
protected TimeBasedEpochGenerator(Consumer<byte[]> randomNextBytes, UUIDClock clock)
9393
{

src/test/java/com/fasterxml/uuid/impl/TimeBasedEpochGeneratorTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
import junit.framework.TestCase;
1111

1212
/**
13-
* @since 5.3
13+
* @since 5.2
1414
*/
1515
public class TimeBasedEpochGeneratorTest extends TestCase
1616
{

0 commit comments

Comments
 (0)