mirror of https://github.com/apache/maven.git
Fix violations reported by checkstyle
This commit is contained in:
parent
9d98b5c15c
commit
df21509310
|
@ -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
|
||||
{
|
||||
|
||||
}
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
||||
|
|
|
@ -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
|
||||
{
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue