Skip to content

Commit

Permalink
Jakarta -> javax in comments
Browse files Browse the repository at this point in the history
Signed-off-by: Jonathan Coustick <jonathan.coustick@payara.fish>
  • Loading branch information
Cousjava committed Nov 8, 2019
1 parent 813c081 commit 370547f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/main/java/jakarta/inject/Qualifier.java
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
* <pre>
* &#064;java.lang.annotation.Documented
* &#064;java.lang.annotation.Retention(RUNTIME)
* &#064;javax.inject.Qualifier
* &#064;jakarta.inject.Qualifier
* public @interface Leather {
* Color color() default Color.TAN;
* public enum Color { RED, BLACK, TAN }
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/jakarta/inject/Scope.java
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
* <pre>
* &#064;java.lang.annotation.Documented
* &#064;java.lang.annotation.Retention(RUNTIME)
* &#064;javax.inject.Scope
* &#064;jakarta.inject.Scope
* public @interface RequestScoped {}</pre>
*
* <p>Annotating scope annotations with {@code @Scope} helps the injector
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/jakarta/inject/package-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,6 @@
* some definition, can be an injector, but this package specification aims to
* minimize restrictions on injector implementations.
*
* @see javax.inject.Inject @Inject
* @see jakarta.inject.Inject @Inject
*/
package jakarta.inject;

0 comments on commit 370547f

Please sign in to comment.