--- old/src/share/classes/java/security/PrivilegedAction.java 2013-06-27 23:05:28.893546186 -0700 +++ new/src/share/classes/java/security/PrivilegedAction.java 2013-06-27 23:05:28.721546190 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 1998, 2004, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1998, 2013, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -28,10 +28,10 @@ /** * A computation to be performed with privileges enabled. The computation is - * performed by invoking AccessController.doPrivileged on the - * PrivilegedAction object. This interface is used only for + * performed by invoking {@code AccessController.doPrivileged} on the + * {@code PrivilegedAction} object. This interface is used only for * computations that do not throw checked exceptions; computations that - * throw checked exceptions must use PrivilegedExceptionAction + * throw checked exceptions must use {@code PrivilegedExceptionAction} * instead. * * @see AccessController @@ -42,11 +42,11 @@ public interface PrivilegedAction { /** * Performs the computation. This method will be called by - * AccessController.doPrivileged after enabling privileges. + * {@code AccessController.doPrivileged} after enabling privileges. * * @return a class-dependent value that may represent the results of the * computation. Each class that implements - * PrivilegedAction + * {@code PrivilegedAction} * should document what (if anything) this value represents. * @see AccessController#doPrivileged(PrivilegedAction) * @see AccessController#doPrivileged(PrivilegedAction,