moved to community

This commit is contained in:
Alexey Kudravtsev
2011-07-07 14:49:20 +04:00
parent 23d1e25d34
commit f3631279a7
49 changed files with 766 additions and 0 deletions
@@ -0,0 +1,37 @@
// LocalsOrMyInstanceFieldsControlFlowPolicy
// SCR 12926
import java.rmi.RemoteException;
public class B {
public Object show(Object obj)
{
try
{
throw new NullPointerException();
}
catch ( NullPointerException npe )
{
}
finally
{<caret>
if ( obj != null )
{
try
{
throw new RemoteException();
}
catch ( RemoteException re )
{
System.out.println( re );
}
finally
{
obj = null;
}
}
}
return null;
}
}