summaryrefslogtreecommitdiff
path: root/java
diff options
context:
space:
mode:
authorMichael Koch <konqueror@gmx.de>2004-10-15 07:39:06 +0000
committerMichael Koch <konqueror@gmx.de>2004-10-15 07:39:06 +0000
commit8bbd3ffc325671ca8b74a951bfac53b015b8ced0 (patch)
treea61eaa75cc7feabee4fc455c335bd2a7d0252b0f /java
parente1172a6ee2527e8bc132ef57fef291de54d52819 (diff)
downloadclasspath-8bbd3ffc325671ca8b74a951bfac53b015b8ced0.tar.gz
2004-10-15 Michael Koch <konqueror@gmx.de>
* java/lang/reflect/Proxy.java: Improved javadocs.
Diffstat (limited to 'java')
-rw-r--r--java/lang/reflect/Proxy.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/java/lang/reflect/Proxy.java b/java/lang/reflect/Proxy.java
index 2681725d2..8aee02fb4 100644
--- a/java/lang/reflect/Proxy.java
+++ b/java/lang/reflect/Proxy.java
@@ -723,8 +723,8 @@ public class Proxy implements Serializable
private static final class ProxyData
{
/**
- * The package this class is in *including the trailing dot* or "" for
- * the unnamed (aka default) package.
+ * The package this class is in <b>including the trailing dot</b>
+ * or an empty string for the unnamed (aka default) package.
*/
String pack;
@@ -772,7 +772,7 @@ public class Proxy implements Serializable
/**
* Return the name of a package (including the trailing dot)
* given the name of a class.
- * Returns "" if no package. We use this in preference to
+ * Returns an empty string if no package. We use this in preference to
* using Class.getPackage() to avoid problems with ClassLoaders
* that don't set the package.
*/