Skip to content

Commit e97712b

Browse files
committed
Update copyright headers in IdGenerators
1 parent 52b8f34 commit e97712b

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

spring-core/src/main/java/org/springframework/util/AlternativeJdkIdGenerator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2013 the original author or authors.
2+
* Copyright 2002-2015 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

spring-core/src/main/java/org/springframework/util/IdGenerator.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2013 the original author or authors.
2+
* Copyright 2002-2015 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -19,7 +19,7 @@
1919
import java.util.UUID;
2020

2121
/**
22-
* Contract for generating {@link UUID} identifiers.
22+
* Contract for generating universally unique identifiers {@link UUID (UUIDs)}.
2323
*
2424
* @author Rossen Stoyanchev
2525
* @since 4.0

spring-core/src/main/java/org/springframework/util/JdkIdGenerator.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2013 the original author or authors.
2+
* Copyright 2002-2015 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -19,7 +19,8 @@
1919
import java.util.UUID;
2020

2121
/**
22-
* An IdGenerator that calls {@link java.util.UUID#randomUUID()}.
22+
* An {@link org.springframework.util.IdGenerator IdGenerator} that calls
23+
* {@link java.util.UUID#randomUUID()}.
2324
*
2425
* @author Rossen Stoyanchev
2526
* @since 4.2

spring-core/src/main/java/org/springframework/util/SimpleIdGenerator.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2013 the original author or authors.
2+
* Copyright 2002-2015 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -20,7 +20,8 @@
2020
import java.util.concurrent.atomic.AtomicLong;
2121

2222
/**
23-
* An simple IdGenerator that starts at 1 and increments by 1 with each call.
23+
* A simple {@link org.springframework.util.IdGenerator IdGenerator} that
24+
* starts at 1 and increments by 1 with each call.
2425
*
2526
* @author Rossen Stoyanchev
2627
* @since 4.2

0 commit comments

Comments
 (0)