Skip to content

Commit

Permalink
Add a couple more missing @SInCE tags.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 527669293
  • Loading branch information
sameb authored and Guice Team committed Apr 27, 2023
1 parent 0c94a80 commit 99d0e11
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
6 changes: 5 additions & 1 deletion core/src/com/google/inject/util/Enhanced.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,11 @@
import com.google.inject.internal.BytecodeGen;
import java.util.Optional;

/** Utilities for checking if classes are enhanced and/or getting the original un-enhanced class. */
/**
* Utilities for checking if classes are enhanced and/or getting the original un-enhanced class.
*
* @since 6.0
*/
public final class Enhanced {
private Enhanced() {}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,11 @@

package com.google.inject.persist.jpa;

/** Options that configure how the JPA persist service will work. */
/**
* Options that configure how the JPA persist service will work.
*
* @since 6.0
*/
public final class JpaPersistOptions {

private final boolean autoBeginWorkOnEntityManagerCreation;
Expand All @@ -41,7 +45,11 @@ public static Builder builder() {
return new Builder();
}

/** A builder to create the options. */
/**
* A builder to create the options.
*
* @since 6.0
*/
public static final class Builder {
private boolean autoBeginWorkOnEntityManagerCreation;

Expand Down

0 comments on commit 99d0e11

Please sign in to comment.