Skip to content

Commit

Permalink
Implement Thread.interrupt() support.
Browse files Browse the repository at this point in the history
  • Loading branch information
lincolnthree committed May 5, 2014
1 parent f413c93 commit 1b68da3
Showing 1 changed file with 4 additions and 0 deletions.
Expand Up @@ -9,6 +9,8 @@
import org.jboss.forge.furnace.Furnace;
import org.jboss.forge.furnace.addons.Addon;
import org.jboss.forge.furnace.exception.ContainerException;
import org.jboss.forge.furnace.proxy.ClassLoaderInterceptor;
import org.jboss.forge.furnace.proxy.Proxies;
import org.jboss.forge.furnace.spi.ExportedInstance;

/**
Expand All @@ -34,6 +36,8 @@ public T get()
try
{
delegate = type.newInstance();
delegate = Proxies.enhance(addon.getClassLoader(), delegate, new ClassLoaderInterceptor(addon.getClassLoader(),
delegate));
}
catch (Exception e)
{
Expand Down

0 comments on commit 1b68da3

Please sign in to comment.