You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by oh...@apache.org on 2008/07/22 22:30:55 UTC

svn commit: r678887 - /commons/proper/cli/trunk/src/test/org/apache/commons/cli2/bug/BugCLI126Test.java

Author: oheger
Date: Tue Jul 22 13:30:55 2008
New Revision: 678887

URL: http://svn.apache.org/viewvc?rev=678887&view=rev
Log:
Added missing license header.

Modified:
    commons/proper/cli/trunk/src/test/org/apache/commons/cli2/bug/BugCLI126Test.java

Modified: commons/proper/cli/trunk/src/test/org/apache/commons/cli2/bug/BugCLI126Test.java
URL: http://svn.apache.org/viewvc/commons/proper/cli/trunk/src/test/org/apache/commons/cli2/bug/BugCLI126Test.java?rev=678887&r1=678886&r2=678887&view=diff
==============================================================================
--- commons/proper/cli/trunk/src/test/org/apache/commons/cli2/bug/BugCLI126Test.java (original)
+++ commons/proper/cli/trunk/src/test/org/apache/commons/cli2/bug/BugCLI126Test.java Tue Jul 22 13:30:55 2008
@@ -1,12 +1,29 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
 package org.apache.commons.cli2.bug;
 
 import junit.framework.TestCase;
-import org.apache.commons.cli2.option.PropertyOption;
-import org.apache.commons.cli2.Group;
+
 import org.apache.commons.cli2.CommandLine;
+import org.apache.commons.cli2.Group;
 import org.apache.commons.cli2.OptionException;
-import org.apache.commons.cli2.commandline.Parser;
 import org.apache.commons.cli2.builder.GroupBuilder;
+import org.apache.commons.cli2.commandline.Parser;
+import org.apache.commons.cli2.option.PropertyOption;
 
 /**
  * @author brianegge