[jbossws-commits] JBossWS SVN: r14504 - common/trunk/src/main/java/org/jboss/ws/common/deployment.

jbossws-commits at lists.jboss.org jbossws-commits at lists.jboss.org
Thu Jun 9 12:19:51 EDT 2011


Author: alessio.soldano at jboss.com
Date: 2011-06-09 12:19:51 -0400 (Thu, 09 Jun 2011)
New Revision: 14504

Modified:
   common/trunk/src/main/java/org/jboss/ws/common/deployment/ArchiveDeploymentModelFactory.java
   common/trunk/src/main/java/org/jboss/ws/common/deployment/DefaultDeploymentModelFactory.java
Log:
[JBWS-3312] Remove deprecated methods


Modified: common/trunk/src/main/java/org/jboss/ws/common/deployment/ArchiveDeploymentModelFactory.java
===================================================================
--- common/trunk/src/main/java/org/jboss/ws/common/deployment/ArchiveDeploymentModelFactory.java	2011-06-09 16:13:22 UTC (rev 14503)
+++ common/trunk/src/main/java/org/jboss/ws/common/deployment/ArchiveDeploymentModelFactory.java	2011-06-09 16:19:51 UTC (rev 14504)
@@ -1,6 +1,6 @@
 /*
  * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * Copyright 2011, Red Hat Middleware LLC, and individual contributors
  * as indicated by the @author tags. See the copyright.txt file in the
  * distribution for a full listing of individual contributors.
  *
@@ -42,15 +42,6 @@
       return new DefaultService();
    }
 
-   @Deprecated
-   /**
-    * Use #newHttpEndpoint(String) instead
-    */
-   public Endpoint newEndpoint(String targetBean)
-   {
-      return this.newHttpEndpoint(targetBean);
-   }
-   
    public Endpoint newHttpEndpoint(String targetBean)
    {
       return new DefaultHttpEndpoint(targetBean);

Modified: common/trunk/src/main/java/org/jboss/ws/common/deployment/DefaultDeploymentModelFactory.java
===================================================================
--- common/trunk/src/main/java/org/jboss/ws/common/deployment/DefaultDeploymentModelFactory.java	2011-06-09 16:13:22 UTC (rev 14503)
+++ common/trunk/src/main/java/org/jboss/ws/common/deployment/DefaultDeploymentModelFactory.java	2011-06-09 16:19:51 UTC (rev 14504)
@@ -1,6 +1,6 @@
 /*
  * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * Copyright 2011, Red Hat Middleware LLC, and individual contributors
  * as indicated by the @author tags. See the copyright.txt file in the
  * distribution for a full listing of individual contributors.
  *
@@ -42,15 +42,6 @@
       return new DefaultService();
    }
 
-   @Deprecated
-   /**
-    * Use #newHttpEndpoint(String) instead
-    */
-   public Endpoint newEndpoint(String targetBean)
-   {
-      return this.newHttpEndpoint(targetBean);
-   }
-   
    public Endpoint newHttpEndpoint(String targetBean)
    {
       return new DefaultHttpEndpoint(targetBean);



More information about the jbossws-commits mailing list