Fix compiler warnings

This commit is contained in:
dsyer
2008-01-15 13:18:10 +00:00
parent 29f1711270
commit 8bdf835cdd
5 changed files with 4 additions and 12 deletions

View File

@@ -11,7 +11,6 @@ import java.util.Map;
import java.util.Map.Entry;
import org.apache.commons.lang.builder.HashCodeBuilder;
import org.springframework.util.Assert;
/**
* Value object representing runtime parameters to a batch job. Because

View File

@@ -38,7 +38,7 @@ public class SimpleJobIdentifier implements JobIdentifier {
* Default constructor. Since there it is required that the Identifier at least have a name,
* the default constructor should not be called.
*/
private SimpleJobIdentifier() {
SimpleJobIdentifier() {
super();
}

View File

@@ -54,7 +54,7 @@ public class JobInstancePropertiesTests extends TestCase {
badLongMap.put("key", "bad long");
try{
JobInstanceProperties testParameters = new JobInstanceProperties(stringMap, badLongMap, dateMap);
new JobInstanceProperties(stringMap, badLongMap, dateMap);
fail();
}
catch(IllegalArgumentException ex){
@@ -68,7 +68,7 @@ public class JobInstancePropertiesTests extends TestCase {
badMap.put("key", new Integer(2));
try{
JobInstanceProperties testParameters = new JobInstanceProperties(badMap, longMap, dateMap);
new JobInstanceProperties(badMap, longMap, dateMap);
fail();
}
catch(IllegalArgumentException ex){
@@ -82,7 +82,7 @@ public class JobInstancePropertiesTests extends TestCase {
badMap.put("key", new java.sql.Date(System.currentTimeMillis()));
try{
JobInstanceProperties testParameters = new JobInstanceProperties(stringMap, longMap, badMap);
new JobInstanceProperties(stringMap, longMap, badMap);
fail();
}
catch(IllegalArgumentException ex){

View File

@@ -20,12 +20,10 @@ import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Timestamp;
import java.sql.Types;
import java.util.Arrays;
import java.util.Date;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.Map.Entry;
import org.apache.commons.logging.Log;
@@ -37,8 +35,6 @@ import org.springframework.batch.core.domain.JobInstance;
import org.springframework.batch.core.domain.JobInstanceProperties;
import org.springframework.batch.core.domain.JobInstancePropertiesBuilder;
import org.springframework.batch.core.repository.NoSuchBatchDomainObjectException;
import org.springframework.batch.execution.runtime.DefaultJobIdentifier;
import org.springframework.batch.execution.runtime.ScheduledJobIdentifier;
import org.springframework.batch.repeat.ExitStatus;
import org.springframework.beans.factory.InitializingBean;
import org.springframework.dao.DataRetrievalFailureException;

View File

@@ -25,8 +25,6 @@ import junit.framework.TestCase;
import org.springframework.batch.io.exception.BatchEnvironmentException;
import org.springframework.batch.io.exception.FlatFileParsingException;
import org.springframework.batch.io.file.DefaultFlatFileItemReader;
import org.springframework.batch.io.file.SimpleFlatFileItemReader;
import org.springframework.batch.io.file.mapping.FieldSet;
import org.springframework.batch.io.file.mapping.FieldSetMapper;
import org.springframework.batch.io.file.separator.DefaultRecordSeparatorPolicy;
@@ -34,7 +32,6 @@ import org.springframework.batch.io.file.transform.DelimitedLineTokenizer;
import org.springframework.batch.io.file.transform.LineTokenizer;
import org.springframework.core.io.AbstractResource;
import org.springframework.core.io.ByteArrayResource;
import org.springframework.core.io.FileSystemResource;
import org.springframework.core.io.Resource;
/**