BATCH-2112: Removed Spring Batch's SerializationUtils in favor of the Spring Core version

This commit is contained in:
Michael Minella
2014-02-12 11:23:03 -06:00
parent 0b5bad920b
commit 9317ab2565
15 changed files with 82 additions and 271 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2006-2007 the original author or authors.
* Copyright 2006-2014 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -20,11 +20,11 @@ import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
import org.junit.Test;
import org.springframework.batch.support.SerializationUtils;
import org.springframework.util.SerializationUtils;
/**
* @author Dave Syer
*
*
*/
public class ExitStatusTests {
@@ -54,7 +54,7 @@ public class ExitStatusTests {
/**
* Test equality of exit statuses.
*
*
* @throws Exception
*/
@Test
@@ -75,7 +75,7 @@ public class ExitStatusTests {
/**
* Test equality of exit statuses.
*
*
* @throws Exception
*/
@Test
@@ -85,7 +85,7 @@ public class ExitStatusTests {
/**
* Test equality of exit statuses.
*
*
* @throws Exception
*/
@Test

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2006-2007 the original author or authors.
* Copyright 2006-2014 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -26,7 +26,7 @@ import java.util.Date;
import java.util.List;
import org.junit.Test;
import org.springframework.batch.support.SerializationUtils;
import org.springframework.util.SerializationUtils;
/**
* @author Dave Syer

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2006-2007 the original author or authors.
* Copyright 2006-2014 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -19,7 +19,7 @@ import static org.junit.Assert.assertEquals;
import static org.junit.Assert.fail;
import org.junit.Test;
import org.springframework.batch.support.SerializationUtils;
import org.springframework.util.SerializationUtils;
/**
* @author dsyer

View File

@@ -13,7 +13,7 @@ import java.util.Map.Entry;
import org.junit.Before;
import org.junit.Test;
import org.springframework.batch.support.SerializationUtils;
import org.springframework.util.SerializationUtils;
/**
* @author Lucas Ward

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2006-2007 the original author or authors.
* Copyright 2006-2014 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -30,7 +30,7 @@ import org.junit.Before;
import org.junit.Test;
import org.springframework.batch.core.step.StepSupport;
import org.springframework.batch.item.ExecutionContext;
import org.springframework.batch.support.SerializationUtils;
import org.springframework.util.SerializationUtils;
/**
* @author Dave Syer