AccessControlContext.java: Reformated.

2005-04-26  Michael Koch  <konqueror@gmx.de>

	* java/security/AccessControlContext.java:
	Reformated.
	(protectedDomains): Renamed from 'protectionDomain'.
	* java/security/AccessController.java:
	Reformatted.

From-SVN: r98766
This commit is contained in:
Michael Koch 2005-04-26 07:16:48 +00:00 committed by Michael Koch
parent 6f3a3283f2
commit bb07973ce5
3 changed files with 29 additions and 23 deletions

View file

@ -113,7 +113,7 @@ public final class AccessController
* @return the result of the <code>action.run()</code> method.
*/
public static Object doPrivileged(PrivilegedAction action,
AccessControlContext context)
AccessControlContext context)
{
return action.run();
}
@ -137,14 +137,13 @@ public final class AccessController
public static Object doPrivileged(PrivilegedExceptionAction action)
throws PrivilegedActionException
{
try
{
return action.run();
return action.run();
}
catch (Exception e)
{
throw new PrivilegedActionException(e);
throw new PrivilegedActionException(e);
}
}
@ -167,17 +166,16 @@ public final class AccessController
* is thrown in the <code>run()</code> method.
*/
public static Object doPrivileged(PrivilegedExceptionAction action,
AccessControlContext context)
AccessControlContext context)
throws PrivilegedActionException
{
try
{
return action.run();
return action.run();
}
catch (Exception e)
{
throw new PrivilegedActionException(e);
throw new PrivilegedActionException(e);
}
}