Skip to content

Commit

Permalink
Fix wrong @deprecated since version
Browse files Browse the repository at this point in the history
  • Loading branch information
quaff authored and Sanne committed Jan 31, 2023
1 parent 1b2fd1f commit 9a1a703
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Expand Up @@ -34,7 +34,7 @@
*
* @deprecated Replaced by {@link AnnotationBasedGenerator}
*/
@Deprecated(since = "6", forRemoval = true)
@Deprecated(since = "6.2", forRemoval = true)
public interface AnnotationValueGeneration<A extends Annotation>
extends ValueGeneration, AnnotationBasedGenerator<A> {
/**
Expand Down
Expand Up @@ -24,7 +24,7 @@
* redefined using the new broader {@linkplain org.hibernate.generator generation}
* approach.
*/
@Deprecated(since = "6", forRemoval = true)
@Deprecated(since = "6.2", forRemoval = true)
public enum GenerationTiming {
/**
* Value generation that never occurs.
Expand Down
Expand Up @@ -28,7 +28,7 @@
*
* @deprecated Replaced by {@link Generator}
*/
@Deprecated(since = "6", forRemoval = true)
@Deprecated(since = "6.2", forRemoval = true)
public interface ValueGeneration extends BeforeExecutionGenerator, OnExecutionGenerator {
/**
* Specifies that the property value is generated:
Expand Down
Expand Up @@ -16,7 +16,7 @@
*
* @author Steve Ebersole
*/
@Deprecated(since = "6", forRemoval = true)
@Deprecated(since = "6.2", forRemoval = true)
public interface ValueGenerator<T> {
/**
* Generate the value.
Expand Down

0 comments on commit 9a1a703

Please sign in to comment.