Browse Source

javadoc + make it final is it has a private constructor

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@278441 13f79535-47bb-0310-9956-ffa450edef68
master
Peter Reilly 20 years ago
parent
commit
f4ba64dbba
1 changed files with 4 additions and 2 deletions
  1. +4
    -2
      src/main/org/apache/tools/ant/taskdefs/optional/ejb/DDCreatorHelper.java

+ 4
- 2
src/main/org/apache/tools/ant/taskdefs/optional/ejb/DDCreatorHelper.java View File

@@ -1,5 +1,5 @@
/*
* Copyright 2000-2004 The Apache Software Foundation
* Copyright 2000-2005 The Apache Software Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -28,7 +28,7 @@ import javax.ejb.deployment.DeploymentDescriptor;
* interface class files referenced in the deployment descriptors being built.
*
*/
public class DDCreatorHelper {
public final class DDCreatorHelper {
/**
* The root directory of the tree containing the textual deployment descriptors.
*/
@@ -49,6 +49,8 @@ public class DDCreatorHelper {
*
* The main method creates an instance of the DDCreatorHelper, passing it the
* args which it then processes.
* @param args the arguments
* @throws Exception on error
*/
public static void main(String[] args) throws Exception {
DDCreatorHelper helper = new DDCreatorHelper(args);


Loading…
Cancel
Save