aboutsummaryrefslogtreecommitdiffstats
path: root/vespajlib/src/main/java/com/yahoo/collections/ResourceFactory.java
blob: 297dd794a16696ebb5149ea7725fad7823cef0a5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright 2016 Yahoo Inc. 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();
}