--- old/src/share/classes/java/security/GuardedObject.java 2013-06-28 10:31:40.090377041 -0700 +++ new/src/share/classes/java/security/GuardedObject.java 2013-06-28 10:31:39.930377043 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 1997, 2004, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1997, 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 @@ -33,9 +33,9 @@ * such that access to the target object is possible * only if the Guard object allows it. * Once an object is encapsulated by a GuardedObject, - * access to that object is controlled by the getObject + * access to that object is controlled by the {@code getObject} * method, which invokes the - * checkGuard method on the Guard object that is + * {@code checkGuard} method on the Guard object that is * guarding access. If access is not allowed, * an exception is thrown. *