donaldp 2002/09/07 21:57:05
Modified: info/src/java/org/apache/avalon/framework/info
ContextDescriptor.java DependencyDescriptor.java
EntryDescriptor.java ServiceDescriptor.java
Log:
Removed some unused constructors.
Revision Changes Path
1.5 +1 -10
jakarta-avalon-excalibur/info/src/java/org/apache/avalon/framework/info/ContextDescriptor.java
Index: ContextDescriptor.java
===================================================================
RCS file:
/home/cvs/jakarta-avalon-excalibur/info/src/java/org/apache/avalon/framework/info/ContextDescriptor.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ContextDescriptor.java 8 Sep 2002 04:55:36 -0000 1.4
+++ ContextDescriptor.java 8 Sep 2002 04:57:05 -0000 1.5
@@ -43,15 +43,6 @@
private final EntryDescriptor[] m_entrys;
/**
- * Create a descriptor sans attributes.
- */
- public ContextDescriptor( final String type,
- final EntryDescriptor[] entrys )
- {
- this( type, entrys, null );
- }
-
- /**
* Create a descriptor.
*
* @throws NullPointerException if type or entrys argument is null
1.5 +1 -10
jakarta-avalon-excalibur/info/src/java/org/apache/avalon/framework/info/DependencyDescriptor.java
Index: DependencyDescriptor.java
===================================================================
RCS file:
/home/cvs/jakarta-avalon-excalibur/info/src/java/org/apache/avalon/framework/info/DependencyDescriptor.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- DependencyDescriptor.java 8 Sep 2002 04:55:36 -0000 1.4
+++ DependencyDescriptor.java 8 Sep 2002 04:57:05 -0000 1.5
@@ -53,15 +53,6 @@
private final boolean m_optional;
/**
- * Constructor a dependency sans Attributes.
- */
- public DependencyDescriptor( final String key,
- final String service )
- {
- this( key, service, false, null );
- }
-
- /**
* Constructor that has all parts sans parent.
*/
public DependencyDescriptor( final String key,
1.2 +1 -10
jakarta-avalon-excalibur/info/src/java/org/apache/avalon/framework/info/EntryDescriptor.java
Index: EntryDescriptor.java
===================================================================
RCS file:
/home/cvs/jakarta-avalon-excalibur/info/src/java/org/apache/avalon/framework/info/EntryDescriptor.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- EntryDescriptor.java 31 Aug 2002 08:17:00 -0000 1.1
+++ EntryDescriptor.java 8 Sep 2002 04:57:05 -0000 1.2
@@ -47,15 +47,6 @@
* Construct an Entry.
*/
public EntryDescriptor( final String key,
- final String type )
- {
- this( key, type, false );
- }
-
- /**
- * Construct an Entry.
- */
- public EntryDescriptor( final String key,
final String type,
final boolean optional )
{
1.4 +1 -11
jakarta-avalon-excalibur/info/src/java/org/apache/avalon/framework/info/ServiceDescriptor.java
Index: ServiceDescriptor.java
===================================================================
RCS file:
/home/cvs/jakarta-avalon-excalibur/info/src/java/org/apache/avalon/framework/info/ServiceDescriptor.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ServiceDescriptor.java 8 Sep 2002 04:44:36 -0000 1.3
+++ ServiceDescriptor.java 8 Sep 2002 04:57:05 -0000 1.4
@@ -39,16 +39,6 @@
private final String m_implementationKey;
/**
- * Construct a service descriptor for specified ServiceDesignator.
- *
- * @param implementationKey the implementationKey of Service
- */
- public ServiceDescriptor( final String implementationKey )
- {
- this( implementationKey, null );
- }
-
- /**
* Construct a service with specified name and attributes.
*
* @param implementationKey the implementationKey of Service
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>