summaryrefslogtreecommitdiffstats
path: root/vespajlib/src/main/java/com/yahoo/collections/ResourceFactory.java
blob: 7a8e7dafbc442aa7e01dcd1ae3fd579ae9e0a210 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.collections;

/**
 * @author baldersheim
 * TODO: remove on vespa 7 or before
 * Use com.yahoo.yolean.concurrent.ResourceFactory instead.
 */
@Deprecated
public abstract class ResourceFactory<T> {

    public abstract T create();
}