Skip to content

Commit

Permalink
GERONIMO-6553 apply code cleanup
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/geronimo/specs/trunk@1796658 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
struberg committed May 29, 2017
1 parent 4f82879 commit 57cfa23
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@

import java.lang.annotation.Annotation;
import java.util.concurrent.CompletionStage;
import java.util.concurrent.Executor;

import javax.enterprise.util.TypeLiteral;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@

import javax.enterprise.event.Reception;
import javax.enterprise.event.TransactionPhase;
import javax.naming.event.*;

/**
* <p>ObserverMethod is the SPI to handle an observer method, which is
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
package javax.enterprise.inject.spi.configurator;

import javax.enterprise.context.spi.CreationalContext;
import javax.enterprise.inject.Instance;
import java.util.function.Consumer;
import java.util.function.Function;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ public boolean equals(Object other)
return false;
}

if(value == null && annotValue == null)
if(value == null)
{
continue;
}
Expand Down Expand Up @@ -197,7 +197,7 @@ else if(Character.TYPE == type)
}
}

else if (value != null && annotValue != null)
else if (annotValue != null)
{
if (!value.equals(annotValue))
{
Expand Down

0 comments on commit 57cfa23

Please sign in to comment.