/[classpath]/classpath/java/text/AttributedStringIterator.java
ViewVC logotype

Diff of /classpath/java/text/AttributedStringIterator.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.11 by trebligd, Mon Oct 24 10:04:22 2005 UTC revision 1.12 by tromey, Mon Oct 24 16:29:10 2005 UTC
# Line 204  class AttributedStringIterator implement Line 204  class AttributedStringIterator implement
204        Iterator iterator = attributeSet.iterator();        Iterator iterator = attributeSet.iterator();
205        while (iterator.hasNext())        while (iterator.hasNext())
206        {        {
207          Attribute attributeKey = (Attribute) iterator.next();          // Qualified name is a workaround for a gcj 4.0 bug.
208            AttributedCharacterIterator.Attribute attributeKey
209              = (AttributedCharacterIterator.Attribute) iterator.next();
210          Object v1 = runValues.get(attributeKey);          Object v1 = runValues.get(attributeKey);
211          Object v2 = getAttribute(attributeKey, limit + 1);          Object v2 = getAttribute(attributeKey, limit + 1);
212          boolean changed = false;          boolean changed = false;
# Line 287  class AttributedStringIterator implement Line 289  class AttributedStringIterator implement
289        Iterator iterator = attributeSet.iterator();        Iterator iterator = attributeSet.iterator();
290        while (iterator.hasNext())        while (iterator.hasNext())
291        {        {
292          Attribute attributeKey = (Attribute) iterator.next();          // Qualified name is a workaround for a gcj 4.0 bug.
293            AttributedCharacterIterator.Attribute attributeKey
294              = (AttributedCharacterIterator.Attribute) iterator.next();
295          Object v1 = runValues.get(attributeKey);          Object v1 = runValues.get(attributeKey);
296          Object v2 = getAttribute(attributeKey, prev);          Object v2 = getAttribute(attributeKey, prev);
297          boolean changed = false;          boolean changed = false;

Legend:
Removed from v.1.11  
changed lines
  Added in v.1.12

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26