Skip to content

Commit

Permalink
Rerun formatter to fix errors
Browse files Browse the repository at this point in the history
Signed-off-by: Scott M Stark <[email protected]>
  • Loading branch information
starksm64 committed Feb 26, 2024
1 parent d3e86c9 commit ed7884a
Show file tree
Hide file tree
Showing 21 changed files with 53 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ public final static class Literal extends AnnotationLiteral<BeforeDestroyed> imp

/**
* Obtain the literal of the provided scope annotation
*
* @param value - the scope annotation
* @return a new Literal value for the provided scope annotation
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ public BusyConversationException() {

/**
* Create exception with given message
*
* @param message - context information
*/
public BusyConversationException(String message) {
Expand All @@ -58,6 +59,7 @@ public BusyConversationException(String message) {

/**
* Create exception with given cause
*
* @param cause - cause of exception
*/
public BusyConversationException(Throwable cause) {
Expand All @@ -66,6 +68,7 @@ public BusyConversationException(Throwable cause) {

/**
* Create exception with given message and cause
*
* @param message - context information
* @param cause - cause of exception
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ public ContextException() {

/**
* Create exception with given message and cause
*
* @param message - context information
*/
public ContextException(String message) {
Expand All @@ -43,6 +44,7 @@ public ContextException(String message) {

/**
* Create exception with given message and cause
*
* @param cause - cause of exception
*/
public ContextException(Throwable cause) {
Expand All @@ -51,6 +53,7 @@ public ContextException(Throwable cause) {

/**
* Create exception with given message and cause
*
* @param message - context information
* @param cause - cause of exception
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ public ContextNotActiveException() {

/**
* Create exception with given message
*
* @param message - context information
*/
public ContextNotActiveException(String message) {
Expand All @@ -49,6 +50,7 @@ public ContextNotActiveException(String message) {

/**
* Create exception with given cause
*
* @param cause - cause of exception
*/
public ContextNotActiveException(Throwable cause) {
Expand All @@ -57,6 +59,7 @@ public ContextNotActiveException(Throwable cause) {

/**
* Create exception with given message and cause
*
* @param message - context information
* @param cause - cause of exception
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ public final static class Literal extends AnnotationLiteral<Destroyed> implement

/**
* Obtain the literal of the provided scope annotation
*
* @param value - the scope annotation
* @return a new Literal value for the provided scope annotation
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ public final static class Literal extends AnnotationLiteral<Initialized> impleme

/**
* Obtain the literal of the provided scope annotation
*
* @param value - the scope annotation
* @return a new Literal value for the provided scope annotation
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ public NonexistentConversationException() {

/**
* Create exception with given message
*
* @param message - context information
*/
public NonexistentConversationException(String message) {
Expand All @@ -55,6 +56,7 @@ public NonexistentConversationException(String message) {

/**
* Create exception with given cause
*
* @param cause - cause of exception
*/
public NonexistentConversationException(Throwable cause) {
Expand All @@ -63,6 +65,7 @@ public NonexistentConversationException(Throwable cause) {

/**
* Create exception with given message and cause
*
* @param message - context information
* @param cause - cause of exception
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,13 +74,15 @@ interface Builder {

/**
* Set the notification executor
*
* @param executor - {@linkplain Executor}
* @return this
*/
Builder setExecutor(Executor executor);

/**
* Set an option value
*
* @param optionName - name
* @param optionValue - value
* @return this
Expand All @@ -89,6 +91,7 @@ interface Builder {

/**
* Build the notification options
*
* @return NotificationOptions
*/
NotificationOptions build();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ public ObserverException() {

/**
* Create exception with given message
*
* @param message - context information
*/
public ObserverException(String message) {
Expand All @@ -43,6 +44,7 @@ public ObserverException(String message) {

/**
* Create exception with given cause
*
* @param cause - cause of exception
*/
public ObserverException(Throwable cause) {
Expand All @@ -51,6 +53,7 @@ public ObserverException(Throwable cause) {

/**
* Create exception with given message and cause
*
* @param message - context information
* @param cause - cause of exception
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ public AmbiguousResolutionException() {

/**
* Create exception with given message and cause
*
* @param message - context information
* @param throwable - cause of exception
*/
Expand All @@ -43,6 +44,7 @@ public AmbiguousResolutionException(String message, Throwable throwable) {

/**
* Create exception with given message
*
* @param message - context information
*/
public AmbiguousResolutionException(String message) {
Expand All @@ -51,6 +53,7 @@ public AmbiguousResolutionException(String message) {

/**
* Create exception with given cause
*
* @param throwable - cause of exception
*/
public AmbiguousResolutionException(Throwable throwable) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ public CreationException() {

/**
* Create exception with given message
*
* @param message - context information
*/
public CreationException(String message) {
Expand All @@ -43,6 +44,7 @@ public CreationException(String message) {

/**
* Create exception with given cause
*
* @param cause - cause of exception
*/
public CreationException(Throwable cause) {
Expand All @@ -51,6 +53,7 @@ public CreationException(Throwable cause) {

/**
* Create exception with given message and cause
*
* @param message - context information
* @param cause - cause of exception
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ public IllegalProductException() {

/**
* Create exception with given message and cause
*
* @param message - context information
* @param cause - cause of exception
*/
Expand All @@ -43,6 +44,7 @@ public IllegalProductException(String message, Throwable cause) {

/**
* Create exception with given message
*
* @param message - context information
*/
public IllegalProductException(String message) {
Expand All @@ -51,6 +53,7 @@ public IllegalProductException(String message) {

/**
* Create exception with given cause
*
* @param cause - cause of exception
*/
public IllegalProductException(Throwable cause) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ public InjectionException() {

/**
* Create exception with given message and cause
*
* @param message - context information
* @param cause - cause of exception
*/
Expand All @@ -40,6 +41,7 @@ public InjectionException(String message, Throwable cause) {

/**
* Create exception with given message
*
* @param message - context information
*/
public InjectionException(String message) {
Expand All @@ -48,6 +50,7 @@ public InjectionException(String message) {

/**
* Create exception with given cause
*
* @param cause - cause of exception
*/
public InjectionException(Throwable cause) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ public ResolutionException() {

/**
* Create exception with given message and cause
*
* @param message - context information
* @param cause - cause of exception
*/
Expand All @@ -40,6 +41,7 @@ public ResolutionException(String message, Throwable cause) {

/**
* Create exception with given message
*
* @param message - context information
*/
public ResolutionException(String message) {
Expand All @@ -48,6 +50,7 @@ public ResolutionException(String message) {

/**
* Create exception with given cause
*
* @param cause - cause of exception
*/
public ResolutionException(Throwable cause) {
Expand Down
1 change: 1 addition & 0 deletions api/src/main/java/jakarta/enterprise/inject/Typed.java
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ public final static class Literal extends AnnotationLiteral<Typed> implements Ty

/**
* Obtain the Type literal of the provided bean classes
*
* @param value - the classes corresponding to the bean types of the bean
* @return a new Literal value for the provided classes
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ public UnproxyableResolutionException() {

/**
* Create exception with given message and cause
*
* @param message - context information
* @param cause - cause of exception
*/
Expand All @@ -45,6 +46,7 @@ public UnproxyableResolutionException(String message, Throwable cause) {

/**
* Create exception with given message
*
* @param message - context information
*/
public UnproxyableResolutionException(String message) {
Expand All @@ -53,6 +55,7 @@ public UnproxyableResolutionException(String message) {

/**
* Create exception with given cause
*
* @param cause - cause of exception
*/
public UnproxyableResolutionException(Throwable cause) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ public UnsatisfiedResolutionException() {

/**
* Create exception with given message and cause
*
* @param message - context information
* @param cause - cause of exception
*/
Expand All @@ -44,6 +45,7 @@ public UnsatisfiedResolutionException(String message, Throwable cause) {

/**
* Create exception with given message
*
* @param message - context information
*/
public UnsatisfiedResolutionException(String message) {
Expand All @@ -52,6 +54,7 @@ public UnsatisfiedResolutionException(String message) {

/**
* Create exception with given cause
*
* @param cause - cause of exception
*/
public UnsatisfiedResolutionException(Throwable cause) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ public final class NamedLiteral extends AnnotationLiteral<Named> implements Name

/**
* Create a new NamedLiteral for the given name value
*
* @param value - name
* @return new NamedLiteral
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ public class DefinitionException extends RuntimeException {

/**
* Create exception with given message and cause
*
* @param message - context information
* @param cause - cause of exception
*/
Expand All @@ -52,6 +53,7 @@ public DefinitionException(String message, Throwable cause) {

/**
* Create exception with given message
*
* @param message - context information
*/
public DefinitionException(String message) {
Expand All @@ -60,6 +62,7 @@ public DefinitionException(String message) {

/**
* Create exception with given cause
*
* @param cause - cause of exception
*/
public DefinitionException(Throwable cause) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ public class DeploymentException extends RuntimeException {

/**
* Create exception with given message and cause
*
* @param message - context information
* @param cause - cause of exception
*/
Expand All @@ -52,6 +53,7 @@ public DeploymentException(String message, Throwable cause) {

/**
* Create exception with given message
*
* @param message - context information
*/
public DeploymentException(String message) {
Expand All @@ -60,6 +62,7 @@ public DeploymentException(String message) {

/**
* Create exception with given cause
*
* @param cause - cause of exception
*/
public DeploymentException(Throwable cause) {
Expand Down
Loading

0 comments on commit ed7884a

Please sign in to comment.