Skip to content

Commit

Permalink
Un-deprecating Service interface
Browse files Browse the repository at this point in the history
  • Loading branch information
gastaldi committed Aug 7, 2015
1 parent 91c3a69 commit 58e63ff
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,11 @@
*
* @author <a href="mailto:lincolnbaxter@gmail.com">Lincoln Baxter, III</a>
*
* @deprecated from JDK 1.8.0_20 onwards, javac changed its behavior in order to check for transitive references.
* Implementing this interface is discouraged. See <a href="https://issues.jboss.org/browse/FORGE-2019">this
* link</a> for more information
* <h2>Warning: from JDK 1.8.0_20 onwards, javac changed its behavior in order to check for transitive
* references. Implementing this interface is discouraged. See
* <a href="https://issues.jboss.org/browse/FORGE-2019">this link</a> for more information</h2>
*
*/
@Deprecated
public interface Service
{

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@
*
* @author <a href="mailto:lincolnbaxter@gmail.com">Lincoln Baxter, III</a>
*/
@SuppressWarnings("deprecation")
public class SimpleContainerImpl implements AddonLifecycleProvider
{
private static final Logger log = Logger.getLogger(SimpleContainerImpl.class.getName());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ public class AddonRegistryEventTest
{
@Deployment
@AddonDependencies
@SuppressWarnings("deprecation")
public static AddonArchive getDeployment()
{
AddonArchive archive = ShrinkWrap.create(AddonArchive.class)
Expand Down

0 comments on commit 58e63ff

Please sign in to comment.