aboutsummaryrefslogtreecommitdiff
path: root/src/share/classes/java/security/GuardedObject.java
diff options
context:
space:
mode:
authorjuh <none@none>2013-06-28 10:48:02 -0700
committerjuh <none@none>2013-06-28 10:48:02 -0700
commit699337b87c072c8cb9b9e3fef396cdbf4ec657f2 (patch)
tree8a41c1f4f2b9e2cef344b747f9463222f18f47b8 /src/share/classes/java/security/GuardedObject.java
parent2847c2816238f145acb4c4a98df9c509c2e164f3 (diff)
downloadjdk8u_jdk-699337b87c072c8cb9b9e3fef396cdbf4ec657f2.tar.gz
8019360: Cleanup of the javadoc <code> tag in java.security.*
Summary: Convert to {@code ...} tags. convert package.html to package-info.java. Reviewed-by: darcy
Diffstat (limited to 'src/share/classes/java/security/GuardedObject.java')
-rw-r--r--src/share/classes/java/security/GuardedObject.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/share/classes/java/security/GuardedObject.java b/src/share/classes/java/security/GuardedObject.java
index c4edb234a5..a275ddf043 100644
--- a/src/share/classes/java/security/GuardedObject.java
+++ b/src/share/classes/java/security/GuardedObject.java
@@ -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 @@ package java.security;
* 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 <code>getObject</code>
+ * access to that object is controlled by the {@code getObject}
* method, which invokes the
- * <code>checkGuard</code> 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.
*