/[classpath]/classpath/java/util/jar/Attributes.java
ViewVC logotype

Diff of /classpath/java/util/jar/Attributes.java

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

revision 1.7 by mark, Mon Mar 25 20:52:22 2002 UTC revision 1.8 by tromey, Tue Nov 5 03:14:30 2002 UTC
# Line 1  Line 1 
1  /* Attributes.java -- Represents attribute name/value pairs from a Manifest  /* Attributes.java -- Represents attribute name/value pairs from a Manifest
2     Copyright (C) 2000 Free Software Foundation, Inc.     Copyright (C) 2000, 2002 Free Software Foundation, Inc.
3    
4  This file is part of GNU Classpath.  This file is part of GNU Classpath.
5    
# Line 285  public class Attributes implements Clone Line 285  public class Attributes implements Clone
285        // all other characters must be alphanums, '-' or '_'        // all other characters must be alphanums, '-' or '_'
286        for (int i = 1; i < chars.length; i++)        for (int i = 1; i < chars.length; i++)
287          {          {
288              c = chars[i];
289            if (!((c >= 'a' && c <= 'z') ||            if (!((c >= 'a' && c <= 'z') ||
290                  (c >= 'A' && c <= 'Z') ||                  (c >= 'A' && c <= 'Z') ||
291                  (c >= '0' && c <= '9') || (c == '-') || (c == '_')))                  (c >= '0' && c <= '9') || (c == '-') || (c == '_')))

Legend:
Removed from v.1.7  
changed lines
  Added in v.1.8

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