Author: markh Date: Mon Mar 3 04:54:51 2008 New Revision: 633074 URL: http://svn.apache.org/viewvc?rev=633074&view=rev Log: Corrected type comments
Modified: maven/sandbox/trunk/shared/maven-runtime/src/main/java/org/apache/maven/shared/runtime/ClassUtils.java Modified: maven/sandbox/trunk/shared/maven-runtime/src/main/java/org/apache/maven/shared/runtime/ClassUtils.java URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/shared/maven-runtime/src/main/java/org/apache/maven/shared/runtime/ClassUtils.java?rev=633074&r1=633073&r2=633074&view=diff ============================================================================== --- maven/sandbox/trunk/shared/maven-runtime/src/main/java/org/apache/maven/shared/runtime/ClassUtils.java (original) +++ maven/sandbox/trunk/shared/maven-runtime/src/main/java/org/apache/maven/shared/runtime/ClassUtils.java Mon Mar 3 04:54:51 2008 @@ -1,9 +1,23 @@ +package org.apache.maven.shared.runtime; + /* - * $HeadURL$ + * 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 * - * (c) 2008 IIZUKA Software Technologies Ltd. All rights reserved. + * 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.maven.shared.runtime; import java.net.MalformedURLException; import java.net.URL; @@ -13,7 +27,7 @@ /** * Provides various utility methods for working with classes. * - * @author Mark Hobson + * @author <a href="mailto:[EMAIL PROTECTED]">Mark Hobson</a> * @version $Id$ */ final class ClassUtils