delete test file

This commit is contained in:
James M Snell 2014-04-25 12:46:40 -07:00
parent 00773c5480
commit f1da6754e8
1 changed files with 0 additions and 23 deletions

View File

@ -1,23 +0,0 @@
package com.ibm.common.activitystreams.ext;
import java.util.concurrent.Future;
import static com.ibm.common.activitystreams.Makers.type;
import com.ibm.common.activitystreams.TypeValue;
import com.ibm.common.activitystreams.registry.TypeValueRegistry;
public class Test {
public static void main(String... args) throws Exception {
TypeValueRegistry reg =
TypeValueRegistry
.makeDefaultSilent();
Future<TypeValue> tv =
reg.resolveNoWait(type("post"));
System.out.println(tv.get().valueType());
}
}