fixed errors reported by Checkstyle

This commit is contained in:
Hervé Boutemy 2014-06-16 18:30:24 +02:00
parent e9e8a20907
commit ffff00e908
6 changed files with 11 additions and 12 deletions

View File

@ -22,7 +22,6 @@ package org.apache.maven;
import java.io.File; import java.io.File;
import java.io.IOException; import java.io.IOException;
import java.io.InputStream; import java.io.InputStream;
import java.text.SimpleDateFormat;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Arrays; import java.util.Arrays;
import java.util.Collection; import java.util.Collection;
@ -35,7 +34,6 @@ import java.util.LinkedHashSet;
import java.util.List; import java.util.List;
import java.util.Map; import java.util.Map;
import java.util.Properties; import java.util.Properties;
import java.util.TimeZone;
import org.apache.maven.artifact.ArtifactUtils; import org.apache.maven.artifact.ArtifactUtils;
import org.apache.maven.artifact.handler.manager.ArtifactHandlerManager; import org.apache.maven.artifact.handler.manager.ArtifactHandlerManager;
@ -55,7 +53,6 @@ import org.apache.maven.model.building.ModelProblem;
import org.apache.maven.model.building.ModelProblemUtils; import org.apache.maven.model.building.ModelProblemUtils;
import org.apache.maven.model.building.ModelSource; import org.apache.maven.model.building.ModelSource;
import org.apache.maven.model.building.UrlModelSource; import org.apache.maven.model.building.UrlModelSource;
import org.apache.maven.model.interpolation.MavenBuildTimestamp;
import org.apache.maven.plugin.LegacySupport; import org.apache.maven.plugin.LegacySupport;
import org.apache.maven.project.MavenProject; import org.apache.maven.project.MavenProject;
import org.apache.maven.project.ProjectBuilder; import org.apache.maven.project.ProjectBuilder;

View File

@ -156,7 +156,9 @@ public final class CLIReportingUtils
// Raw offset ignores DST, so check if we are in DST now and add the offset // Raw offset ignores DST, so check if we are in DST now and add the offset
if ( tz.inDaylightTime( new Date( timestamp ) ) ) if ( tz.inDaylightTime( new Date( timestamp ) ) )
{
offset += tz.getDSTSavings(); offset += tz.getDSTSavings();
}
long m = Math.abs( ( offset / ONE_MINUTE ) % 60 ); long m = Math.abs( ( offset / ONE_MINUTE ) % 60 );
long h = Math.abs( ( offset / ONE_HOUR ) % 24 ); long h = Math.abs( ( offset / ONE_HOUR ) % 24 );

View File

@ -44,8 +44,8 @@ public interface ProfileActivator
boolean isActive( Profile profile, ProfileActivationContext context, ModelProblemCollector problems ); boolean isActive( Profile profile, ProfileActivationContext context, ModelProblemCollector problems );
/** /**
* Determines whether specified activation method is present in configuration or not. It should help to have AND between * Determines whether specified activation method is present in configuration or not. It should help to have AND
* activation conditions * between activation conditions
* Need for solving http://jira.codehaus.org/browse/MNG-4565 * Need for solving http://jira.codehaus.org/browse/MNG-4565
* @param profile The profile whose activation status should be determined, must not be {@code null}. * @param profile The profile whose activation status should be determined, must not be {@code null}.
* @param context The environmental context used to determine the activation status of the profile, must not be * @param context The environmental context used to determine the activation status of the profile, must not be