~ubuntu-branches/ubuntu/oneiric/ehcache/oneiric

« back to all changes in this revision

Viewing changes to src/test/java/net/sf/ehcache/config/FakeCopyStrategy.java

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2010-06-23 10:35:31 UTC
  • mfrom: (1.1.5 upstream) (2.1.6 sid)
  • Revision ID: james.westby@ubuntu.com-20100623103531-ra0qdpmotoz6ygct
Tags: 2.1.0-1
Merge changes from Thierry's PPA and upload to Debian.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package net.sf.ehcache.config;
 
2
 
 
3
import net.sf.ehcache.store.compound.CopyStrategy;
 
4
 
 
5
/**
 
6
 * @author Alex Snaps
 
7
 */
 
8
public class FakeCopyStrategy implements CopyStrategy {
 
9
 
 
10
    public <T> T copy(final T value) {
 
11
        return null;
 
12
    }
 
13
}