diff --git a/api/src/main/java/jakarta/enterprise/context/ApplicationScoped.java b/api/src/main/java/jakarta/enterprise/context/ApplicationScoped.java index e4e113de..6ab372ae 100644 --- a/api/src/main/java/jakarta/enterprise/context/ApplicationScoped.java +++ b/api/src/main/java/jakarta/enterprise/context/ApplicationScoped.java @@ -34,9 +34,8 @@ *

*

* While ApplicationScoped must be associated with the built-in application context required by the specification, - * third-party extensions are - * allowed to also associate it with their own context. Behavior described below is only related to the built-in application - * context. + * third-party extensions are allowed to also associate it with their own context. Behavior described below is only related to + * the built-in application context. *

* *

@@ -45,8 +44,7 @@ * *

* *

* When no conversation is propagated to a Servlet request, or if a request parameter named conversationPropagation - * has - * the value none the request is associated with a new transient conversation. + * has the value none the request is associated with a new transient conversation. * All long-running conversations are scoped to a particular HTTP servlet session and may not cross session boundaries. * In the following cases, a propagated long-running conversation cannot be restored and re-associated with the request: *

diff --git a/api/src/main/java/jakarta/enterprise/context/Dependent.java b/api/src/main/java/jakarta/enterprise/context/Dependent.java index 20c3c285..762b30d5 100644 --- a/api/src/main/java/jakarta/enterprise/context/Dependent.java +++ b/api/src/main/java/jakarta/enterprise/context/Dependent.java @@ -58,13 +58,13 @@ * * *

- * Every invocation of the {@link Context#get(Contextual, CreationalContext)} operation of the - * context object for the @Dependent scope returns a new instance of the given bean. + * Every invocation of the {@link Context#get(Contextual, CreationalContext)} operation of the context object for the + * @Dependent scope returns a new instance of the given bean. *

* *

- * Every invocation of the {@link Context#get(Contextual)} operation of the context object for the - * @Dependent scope returns a null value. + * Every invocation of the {@link Context#get(Contextual)} operation of the context object for the @Dependent scope + * returns a null value. *

* *

@@ -73,19 +73,17 @@ * *

* Many instances of beans with scope @Dependent belong to some other bean or Java EE component class instance and - * are - * called dependent objects. + * are called dependent objects. *

* * * *

diff --git a/api/src/main/java/jakarta/enterprise/context/RequestScoped.java b/api/src/main/java/jakarta/enterprise/context/RequestScoped.java index 0b3aac64..da2b0369 100644 --- a/api/src/main/java/jakarta/enterprise/context/RequestScoped.java +++ b/api/src/main/java/jakarta/enterprise/context/RequestScoped.java @@ -34,9 +34,8 @@ *

*

* While RequestScoped must be associated with the built-in request context required by the specification, - * third-party extensions are - * allowed to also associate it with their own context. Behavior described below is only related to the built-in request - * context. + * third-party extensions are allowed to also associate it with their own context. Behavior described below is only related to + * the built-in request context. *

* *

@@ -45,8 +44,8 @@ * *

* *

* An event with qualifier @Initialized(RequestScoped.class) is fired when the request context is initialized and - * an - * event - * with qualifier @Destroyed(RequestScoped.class) when the request context is destroyed. The event payload is: + * an event with qualifier @Destroyed(RequestScoped.class) when the request context is destroyed. The event payload + * is: *

* *