You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by gn...@apache.org on 2007/10/09 00:07:50 UTC

svn commit: r582988 - /geronimo/sandbox/gshell/trunk/gshell-core/src/main/java/org/apache/geronimo/gshell/descriptor/CommandSetDescriptor.java

Author: gnodet
Date: Mon Oct  8 15:07:48 2007
New Revision: 582988

URL: http://svn.apache.org/viewvc?rev=582988&view=rev
Log:
Add default constructor to CommandSetDescriptor

Modified:
    geronimo/sandbox/gshell/trunk/gshell-core/src/main/java/org/apache/geronimo/gshell/descriptor/CommandSetDescriptor.java

Modified: geronimo/sandbox/gshell/trunk/gshell-core/src/main/java/org/apache/geronimo/gshell/descriptor/CommandSetDescriptor.java
URL: http://svn.apache.org/viewvc/geronimo/sandbox/gshell/trunk/gshell-core/src/main/java/org/apache/geronimo/gshell/descriptor/CommandSetDescriptor.java?rev=582988&r1=582987&r2=582988&view=diff
==============================================================================
--- geronimo/sandbox/gshell/trunk/gshell-core/src/main/java/org/apache/geronimo/gshell/descriptor/CommandSetDescriptor.java (original)
+++ geronimo/sandbox/gshell/trunk/gshell-core/src/main/java/org/apache/geronimo/gshell/descriptor/CommandSetDescriptor.java Mon Oct  8 15:07:48 2007
@@ -45,6 +45,9 @@
 
     private List<CommandDescriptor> commands;
 
+    public CommandSetDescriptor() {
+    }
+
     public CommandSetDescriptor(final String id) {
         this.id = id;
     }