summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Koch <konqueror@gmx.de>2004-04-20 21:11:43 +0000
committerMichael Koch <konqueror@gmx.de>2004-04-20 21:11:43 +0000
commite216f13564b9ad7c44b05f0bdc962946e8ac713b (patch)
treedc752a6d17b66eaeaec224242b61fb44c2c8b539
parenta61490a4705f3ad79d974d8c4f041a90708cf9b6 (diff)
downloadclasspath-e216f13564b9ad7c44b05f0bdc962946e8ac713b.tar.gz
2004-04-20 Michael Koch <konqueror@gmx.de>
* java/text/AttributedCharacterIterator.java (Attribute): Made public. * javax/naming/spi/DirStateFactory.java (Result): Made public static.
-rw-r--r--ChangeLog7
-rw-r--r--java/text/AttributedCharacterIterator.java2
-rw-r--r--javax/naming/spi/DirStateFactory.java2
3 files changed, 9 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 7e329bf5c..9eb4f6869 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2004-04-20 Michael Koch <konqueror@gmx.de>
+
+ * java/text/AttributedCharacterIterator.java
+ (Attribute): Made public.
+ * javax/naming/spi/DirStateFactory.java
+ (Result): Made public static.
+
2004-04-20 Graydon Hoare <graydon@redhat.com>
* java/text/AttributedString.java
diff --git a/java/text/AttributedCharacterIterator.java b/java/text/AttributedCharacterIterator.java
index a35b4c7b6..c1366adc4 100644
--- a/java/text/AttributedCharacterIterator.java
+++ b/java/text/AttributedCharacterIterator.java
@@ -60,7 +60,7 @@ public interface AttributedCharacterIterator extends CharacterIterator
/**
* This class defines attribute keys that are used as text attributes.
*/
- class Attribute implements Serializable
+ public static class Attribute implements Serializable
{
private static final long serialVersionUID = -9142742483513960612L;
diff --git a/javax/naming/spi/DirStateFactory.java b/javax/naming/spi/DirStateFactory.java
index d160c6902..67e790d47 100644
--- a/javax/naming/spi/DirStateFactory.java
+++ b/javax/naming/spi/DirStateFactory.java
@@ -53,7 +53,7 @@ public interface DirStateFactory extends StateFactory
{
// Inner class
- class Result
+ public static class Result
{
private Object obj;
private Attributes outAttrs;