Fix violations reported by checkstyle

This commit is contained in:
Robert Scholte 2014-12-23 16:49:26 +01:00
parent 9d98b5c15c
commit df21509310
3 changed files with 5 additions and 7 deletions

View File

@ -1,7 +1,5 @@
package org.apache.maven.model.building;
import org.apache.maven.building.Source;
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
@ -21,6 +19,7 @@ import org.apache.maven.building.Source;
* under the License.
*/
import org.apache.maven.building.Source;
/**
* Provides access to the contents of a POM independently of the backing store (e.g. file system, database, memory).
@ -33,7 +32,7 @@ import org.apache.maven.building.Source;
* @deprecated instead use {@link Source}
*/
@Deprecated
public interface ModelSource extends org.apache.maven.building.Source
public interface ModelSource extends Source
{
}

View File

@ -1,7 +1,5 @@
package org.apache.maven.model.building;
import org.apache.maven.building.StringSource;
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
@ -21,6 +19,7 @@ import org.apache.maven.building.StringSource;
* under the License.
*/
import org.apache.maven.building.StringSource;
/**
* Wraps an ordinary {@link CharSequence} as a model source.
@ -30,7 +29,7 @@ import org.apache.maven.building.StringSource;
* @deprecated instead use {@link StringSource}
*/
@Deprecated
public class StringModelSource extends org.apache.maven.building.StringSource
public class StringModelSource extends StringSource
implements ModelSource
{

View File

@ -31,7 +31,7 @@ import org.apache.maven.building.UrlSource;
* @deprecated instead use {@link UrlSource}
*/
@Deprecated
public class UrlModelSource extends org.apache.maven.building.UrlSource
public class UrlModelSource extends UrlSource
implements ModelSource
{
/**