some minor comments, formating, svn tags
git-svn-id: https://svn.libreccm.org/ccm/trunk@75 8810af33-2d31-482b-a856-94f89814c4dfmaster
parent
bbc371a738
commit
52afa2443e
|
|
@ -15,7 +15,7 @@
|
|||
// License along with this library; if not, write to the Free Software
|
||||
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
//
|
||||
// $Id: MultiPartArticle.pdl 287 2005-02-22 00:29:02Z sskracic $
|
||||
// $Id: MultiPartArticle.pdl 1690 2007-10-26 13:11:10Z chrisg23 $
|
||||
// $DateTime: 2004/08/17 23:15:09 $
|
||||
model com.arsdigita.cms.contenttypes;
|
||||
|
||||
|
|
|
|||
|
|
@ -40,12 +40,12 @@ import org.apache.log4j.Logger;
|
|||
* Loader.
|
||||
*
|
||||
* @author Justin Ross <jross@redhat.com>
|
||||
* @version $Id: Loader.java 753 2005-09-02 13:22:34Z sskracic $
|
||||
* @version $Id: Loader.java 1763 2009-01-22 20:01:31Z pboy $
|
||||
*/
|
||||
public class Loader extends PackageLoader {
|
||||
public final static String versionId =
|
||||
"$Id: Loader.java 753 2005-09-02 13:22:34Z sskracic $" +
|
||||
"$Author: sskracic $" +
|
||||
"$Id: Loader.java 1763 2009-01-22 20:01:31Z pboy $" +
|
||||
"$Author: pboy $" +
|
||||
"$DateTime: 2003/11/08 01:27:15 $";
|
||||
|
||||
private static final Logger s_log = Logger.getLogger(Loader.class);
|
||||
|
|
|
|||
|
|
@ -18,22 +18,27 @@
|
|||
|
||||
package com.arsdigita.london.util;
|
||||
|
||||
import com.arsdigita.runtime.Startup;
|
||||
// unused imports
|
||||
// import com.arsdigita.runtime.Startup;
|
||||
|
||||
import org.apache.commons.cli.Options;
|
||||
import org.apache.commons.cli.HelpFormatter;
|
||||
import org.apache.commons.cli.OptionBuilder;
|
||||
import org.apache.commons.cli.GnuParser;
|
||||
import org.apache.commons.cli.ParseException;
|
||||
import org.apache.commons.cli.CommandLine;
|
||||
//import org.apache.commons.cli.Options;
|
||||
// import org.apache.commons.cli.HelpFormatter;
|
||||
// import org.apache.commons.cli.OptionBuilder;
|
||||
// import org.apache.commons.cli.GnuParser;
|
||||
// import org.apache.commons.cli.ParseException;
|
||||
// import org.apache.commons.cli.CommandLine;
|
||||
|
||||
import java.io.OutputStream;
|
||||
import java.io.PrintWriter;
|
||||
// import java.io.OutputStream;
|
||||
// import java.io.PrintWriter;
|
||||
|
||||
/**
|
||||
*
|
||||
* @deprecated - use {@link com.arsdigita.packaging.Program}
|
||||
*
|
||||
* pboy (Jan 2009):
|
||||
* This replacement might be a bad idea. Program is used by a) the packaging
|
||||
* programs during installation, configuration and updates and b) by all
|
||||
* modules which provide a cli interface for bulk tasks (e.g. the import
|
||||
* program). The latter may not be considered to a typical packaging task.
|
||||
*/
|
||||
public abstract class Program extends com.arsdigita.packaging.Program {
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue