]> git.uio.no Git - ifi-stolz-refaktor.git/blob - software/no.uio.ifi.refaktor/src/no/uio/ifi/refaktor/utils/nullobjects/NullSoftReference.java
Software: moving stuff around
[ifi-stolz-refaktor.git] / software / no.uio.ifi.refaktor / src / no / uio / ifi / refaktor / utils / nullobjects / NullSoftReference.java
1 package no.uio.ifi.refaktor.utils.nullobjects;
2
3 import java.lang.ref.SoftReference;
4
5 public class NullSoftReference<T> extends SoftReference<T> {
6
7         public NullSoftReference() {
8                 super(null);
9         }
10
11 }