Merge jdk7-b31

Fri, 04 Jul 2008 15:06:27 -0700

author
tbell
date
Fri, 04 Jul 2008 15:06:27 -0700
changeset 62
07c916ecfc71
parent 61
a0de486e86a1
parent 55
1ffdb836f632
child 63
c5965e789eb6
child 64
5e270b126573

Merge

src/share/classes/com/sun/tools/javac/comp/Check.java file | annotate | diff | comparison | revisions
src/share/classes/com/sun/tools/javac/file/BaseFileObject.java file | annotate | diff | comparison | revisions
src/share/classes/com/sun/tools/javac/file/JavacFileManager.java file | annotate | diff | comparison | revisions
src/share/classes/com/sun/tools/javac/jvm/ClassReader.java file | annotate | diff | comparison | revisions
src/share/classes/com/sun/tools/javac/util/Log.java file | annotate | diff | comparison | revisions
src/share/classes/com/sun/tools/javadoc/JavadocClassReader.java file | annotate | diff | comparison | revisions
src/share/classes/com/sun/tools/javap/JavapFileManager.java file | annotate | diff | comparison | revisions
test/tools/javac/T6358024.java file | annotate | diff | comparison | revisions
test/tools/javac/T6358166.java file | annotate | diff | comparison | revisions
test/tools/javac/T6358168.java file | annotate | diff | comparison | revisions
     1.1 --- a/.hgtags	Wed Jun 25 23:30:55 2008 -0700
     1.2 +++ b/.hgtags	Fri Jul 04 15:06:27 2008 -0700
     1.3 @@ -4,3 +4,4 @@
     1.4  a17265993253d61becd04fe7d96d1fe8b4bd6dff jdk7-b27
     1.5  4ef4bd31856949554967fbf22783babb21a62a0e jdk7-b28
     1.6  dec081837b01d509dcc2b9de86a4299c1ec17e04 jdk7-b29
     1.7 +eaf608c64fecf70f955dc9f29f94c055b183aeec jdk7-b30
     2.1 --- a/make/build.xml	Wed Jun 25 23:30:55 2008 -0700
     2.2 +++ b/make/build.xml	Fri Jul 04 15:06:27 2008 -0700
     2.3 @@ -1,6 +1,6 @@
     2.4  <?xml version="1.0" encoding="UTF-8"?>
     2.5  <!--
     2.6 - Copyright 2007 Sun Microsystems, Inc.  All Rights Reserved.
     2.7 + Copyright 2007-2008 Sun Microsystems, Inc.  All Rights Reserved.
     2.8   DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     2.9  
    2.10   This code is free software; you can redistribute it and/or modify it
     3.1 --- a/make/netbeans/common/standard-ide-actions-no-javadoc.ent	Wed Jun 25 23:30:55 2008 -0700
     3.2 +++ b/make/netbeans/common/standard-ide-actions-no-javadoc.ent	Fri Jul 04 15:06:27 2008 -0700
     3.3 @@ -1,6 +1,6 @@
     3.4  <?xml version="1.0" encoding="UTF-8"?>
     3.5  <!--
     3.6 - Copyright 2007 Sun Microsystems, Inc.  All Rights Reserved.
     3.7 + Copyright 2007-2008 Sun Microsystems, Inc.  All Rights Reserved.
     3.8  
     3.9   Redistribution and use in source and binary forms, with or without
    3.10   modification, are permitted provided that the following conditions
     4.1 --- a/make/netbeans/common/standard-ide-actions.ent	Wed Jun 25 23:30:55 2008 -0700
     4.2 +++ b/make/netbeans/common/standard-ide-actions.ent	Fri Jul 04 15:06:27 2008 -0700
     4.3 @@ -1,6 +1,6 @@
     4.4  <?xml version="1.0" encoding="UTF-8"?>
     4.5  <!--
     4.6 - Copyright 2007 Sun Microsystems, Inc.  All Rights Reserved.
     4.7 + Copyright 2007-2008 Sun Microsystems, Inc.  All Rights Reserved.
     4.8  
     4.9   Redistribution and use in source and binary forms, with or without
    4.10   modification, are permitted provided that the following conditions
     5.1 --- a/src/share/classes/com/sun/tools/apt/main/JavaCompiler.java	Wed Jun 25 23:30:55 2008 -0700
     5.2 +++ b/src/share/classes/com/sun/tools/apt/main/JavaCompiler.java	Fri Jul 04 15:06:27 2008 -0700
     5.3 @@ -1,5 +1,5 @@
     5.4  /*
     5.5 - * Copyright 2004-2006 Sun Microsystems, Inc.  All Rights Reserved.
     5.6 + * Copyright 2004-2008 Sun Microsystems, Inc.  All Rights Reserved.
     5.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     5.8   *
     5.9   * This code is free software; you can redistribute it and/or modify it
     6.1 --- a/src/share/classes/com/sun/tools/apt/main/Main.java	Wed Jun 25 23:30:55 2008 -0700
     6.2 +++ b/src/share/classes/com/sun/tools/apt/main/Main.java	Fri Jul 04 15:06:27 2008 -0700
     6.3 @@ -1,5 +1,5 @@
     6.4  /*
     6.5 - * Copyright 2004-2006 Sun Microsystems, Inc.  All Rights Reserved.
     6.6 + * Copyright 2004-2008 Sun Microsystems, Inc.  All Rights Reserved.
     6.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     6.8   *
     6.9   * This code is free software; you can redistribute it and/or modify it
     7.1 --- a/src/share/classes/com/sun/tools/classfile/AccessFlags.java	Wed Jun 25 23:30:55 2008 -0700
     7.2 +++ b/src/share/classes/com/sun/tools/classfile/AccessFlags.java	Fri Jul 04 15:06:27 2008 -0700
     7.3 @@ -1,5 +1,5 @@
     7.4  /*
     7.5 - * Copyright 2007 Sun Microsystems, Inc.  All Rights Reserved.
     7.6 + * Copyright 2007-2008 Sun Microsystems, Inc.  All Rights Reserved.
     7.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     7.8   *
     7.9   * This code is free software; you can redistribute it and/or modify it
     8.1 --- a/src/share/classes/com/sun/tools/classfile/Annotation.java	Wed Jun 25 23:30:55 2008 -0700
     8.2 +++ b/src/share/classes/com/sun/tools/classfile/Annotation.java	Fri Jul 04 15:06:27 2008 -0700
     8.3 @@ -1,5 +1,5 @@
     8.4  /*
     8.5 - * Copyright 2007 Sun Microsystems, Inc.  All Rights Reserved.
     8.6 + * Copyright 2007-2008 Sun Microsystems, Inc.  All Rights Reserved.
     8.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     8.8   *
     8.9   * This code is free software; you can redistribute it and/or modify it
     9.1 --- a/src/share/classes/com/sun/tools/classfile/AnnotationDefault_attribute.java	Wed Jun 25 23:30:55 2008 -0700
     9.2 +++ b/src/share/classes/com/sun/tools/classfile/AnnotationDefault_attribute.java	Fri Jul 04 15:06:27 2008 -0700
     9.3 @@ -1,5 +1,5 @@
     9.4  /*
     9.5 - * Copyright 2007 Sun Microsystems, Inc.  All Rights Reserved.
     9.6 + * Copyright 2007-2008 Sun Microsystems, Inc.  All Rights Reserved.
     9.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     9.8   *
     9.9   * This code is free software; you can redistribute it and/or modify it
    10.1 --- a/src/share/classes/com/sun/tools/classfile/Attribute.java	Wed Jun 25 23:30:55 2008 -0700
    10.2 +++ b/src/share/classes/com/sun/tools/classfile/Attribute.java	Fri Jul 04 15:06:27 2008 -0700
    10.3 @@ -1,5 +1,5 @@
    10.4  /*
    10.5 - * Copyright 2007 Sun Microsystems, Inc.  All Rights Reserved.
    10.6 + * Copyright 2007-2008 Sun Microsystems, Inc.  All Rights Reserved.
    10.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    10.8   *
    10.9   * This code is free software; you can redistribute it and/or modify it
    11.1 --- a/src/share/classes/com/sun/tools/classfile/Attributes.java	Wed Jun 25 23:30:55 2008 -0700
    11.2 +++ b/src/share/classes/com/sun/tools/classfile/Attributes.java	Fri Jul 04 15:06:27 2008 -0700
    11.3 @@ -1,5 +1,5 @@
    11.4  /*
    11.5 - * Copyright 2007 Sun Microsystems, Inc.  All Rights Reserved.
    11.6 + * Copyright 2007-2008 Sun Microsystems, Inc.  All Rights Reserved.
    11.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    11.8   *
    11.9   * This code is free software; you can redistribute it and/or modify it
    12.1 --- a/src/share/classes/com/sun/tools/classfile/CharacterRangeTable_attribute.java	Wed Jun 25 23:30:55 2008 -0700
    12.2 +++ b/src/share/classes/com/sun/tools/classfile/CharacterRangeTable_attribute.java	Fri Jul 04 15:06:27 2008 -0700
    12.3 @@ -1,5 +1,5 @@
    12.4  /*
    12.5 - * Copyright 2007 Sun Microsystems, Inc.  All Rights Reserved.
    12.6 + * Copyright 2007-2008 Sun Microsystems, Inc.  All Rights Reserved.
    12.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    12.8   *
    12.9   * This code is free software; you can redistribute it and/or modify it
    13.1 --- a/src/share/classes/com/sun/tools/classfile/ClassFile.java	Wed Jun 25 23:30:55 2008 -0700
    13.2 +++ b/src/share/classes/com/sun/tools/classfile/ClassFile.java	Fri Jul 04 15:06:27 2008 -0700
    13.3 @@ -1,5 +1,5 @@
    13.4  /*
    13.5 - * Copyright 2007 Sun Microsystems, Inc.  All Rights Reserved.
    13.6 + * Copyright 2007-2008 Sun Microsystems, Inc.  All Rights Reserved.
    13.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    13.8   *
    13.9   * This code is free software; you can redistribute it and/or modify it
    14.1 --- a/src/share/classes/com/sun/tools/classfile/ClassReader.java	Wed Jun 25 23:30:55 2008 -0700
    14.2 +++ b/src/share/classes/com/sun/tools/classfile/ClassReader.java	Fri Jul 04 15:06:27 2008 -0700
    14.3 @@ -1,5 +1,5 @@
    14.4  /*
    14.5 - * Copyright 2007 Sun Microsystems, Inc.  All Rights Reserved.
    14.6 + * Copyright 2007-2008 Sun Microsystems, Inc.  All Rights Reserved.
    14.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    14.8   *
    14.9   * This code is free software; you can redistribute it and/or modify it
    15.1 --- a/src/share/classes/com/sun/tools/classfile/Code_attribute.java	Wed Jun 25 23:30:55 2008 -0700
    15.2 +++ b/src/share/classes/com/sun/tools/classfile/Code_attribute.java	Fri Jul 04 15:06:27 2008 -0700
    15.3 @@ -1,5 +1,5 @@
    15.4  /*
    15.5 - * Copyright 2007 Sun Microsystems, Inc.  All Rights Reserved.
    15.6 + * Copyright 2007-2008 Sun Microsystems, Inc.  All Rights Reserved.
    15.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    15.8   *
    15.9   * This code is free software; you can redistribute it and/or modify it
    16.1 --- a/src/share/classes/com/sun/tools/classfile/ConstantPool.java	Wed Jun 25 23:30:55 2008 -0700
    16.2 +++ b/src/share/classes/com/sun/tools/classfile/ConstantPool.java	Fri Jul 04 15:06:27 2008 -0700
    16.3 @@ -1,5 +1,5 @@
    16.4  /*
    16.5 - * Copyright 2007 Sun Microsystems, Inc.  All Rights Reserved.
    16.6 + * Copyright 2007-2008 Sun Microsystems, Inc.  All Rights Reserved.
    16.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    16.8   *
    16.9   * This code is free software; you can redistribute it and/or modify it
    17.1 --- a/src/share/classes/com/sun/tools/classfile/ConstantValue_attribute.java	Wed Jun 25 23:30:55 2008 -0700
    17.2 +++ b/src/share/classes/com/sun/tools/classfile/ConstantValue_attribute.java	Fri Jul 04 15:06:27 2008 -0700
    17.3 @@ -1,5 +1,5 @@
    17.4  /*
    17.5 - * Copyright 2007 Sun Microsystems, Inc.  All Rights Reserved.
    17.6 + * Copyright 2007-2008 Sun Microsystems, Inc.  All Rights Reserved.
    17.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    17.8   *
    17.9   * This code is free software; you can redistribute it and/or modify it
    18.1 --- a/src/share/classes/com/sun/tools/classfile/DefaultAttribute.java	Wed Jun 25 23:30:55 2008 -0700
    18.2 +++ b/src/share/classes/com/sun/tools/classfile/DefaultAttribute.java	Fri Jul 04 15:06:27 2008 -0700
    18.3 @@ -1,5 +1,5 @@
    18.4  /*
    18.5 - * Copyright 2007 Sun Microsystems, Inc.  All Rights Reserved.
    18.6 + * Copyright 2007-2008 Sun Microsystems, Inc.  All Rights Reserved.
    18.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    18.8   *
    18.9   * This code is free software; you can redistribute it and/or modify it
    19.1 --- a/src/share/classes/com/sun/tools/classfile/Deprecated_attribute.java	Wed Jun 25 23:30:55 2008 -0700
    19.2 +++ b/src/share/classes/com/sun/tools/classfile/Deprecated_attribute.java	Fri Jul 04 15:06:27 2008 -0700
    19.3 @@ -1,5 +1,5 @@
    19.4  /*
    19.5 - * Copyright 2007 Sun Microsystems, Inc.  All Rights Reserved.
    19.6 + * Copyright 2007-2008 Sun Microsystems, Inc.  All Rights Reserved.
    19.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    19.8   *
    19.9   * This code is free software; you can redistribute it and/or modify it
    20.1 --- a/src/share/classes/com/sun/tools/classfile/Descriptor.java	Wed Jun 25 23:30:55 2008 -0700
    20.2 +++ b/src/share/classes/com/sun/tools/classfile/Descriptor.java	Fri Jul 04 15:06:27 2008 -0700
    20.3 @@ -1,5 +1,5 @@
    20.4  /*
    20.5 - * Copyright 2007 Sun Microsystems, Inc.  All Rights Reserved.
    20.6 + * Copyright 2007-2008 Sun Microsystems, Inc.  All Rights Reserved.
    20.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    20.8   *
    20.9   * This code is free software; you can redistribute it and/or modify it
    21.1 --- a/src/share/classes/com/sun/tools/classfile/EnclosingMethod_attribute.java	Wed Jun 25 23:30:55 2008 -0700
    21.2 +++ b/src/share/classes/com/sun/tools/classfile/EnclosingMethod_attribute.java	Fri Jul 04 15:06:27 2008 -0700
    21.3 @@ -1,6 +1,6 @@
    21.4  
    21.5  /*
    21.6 - * Copyright 2007 Sun Microsystems, Inc.  All Rights Reserved.
    21.7 + * Copyright 2007-2008 Sun Microsystems, Inc.  All Rights Reserved.
    21.8   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    21.9   *
   21.10   * This code is free software; you can redistribute it and/or modify it
    22.1 --- a/src/share/classes/com/sun/tools/classfile/Exceptions_attribute.java	Wed Jun 25 23:30:55 2008 -0700
    22.2 +++ b/src/share/classes/com/sun/tools/classfile/Exceptions_attribute.java	Fri Jul 04 15:06:27 2008 -0700
    22.3 @@ -1,5 +1,5 @@
    22.4  /*
    22.5 - * Copyright 2007 Sun Microsystems, Inc.  All Rights Reserved.
    22.6 + * Copyright 2007-2008 Sun Microsystems, Inc.  All Rights Reserved.
    22.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    22.8   *
    22.9   * This code is free software; you can redistribute it and/or modify it
    23.1 --- a/src/share/classes/com/sun/tools/classfile/Field.java	Wed Jun 25 23:30:55 2008 -0700
    23.2 +++ b/src/share/classes/com/sun/tools/classfile/Field.java	Fri Jul 04 15:06:27 2008 -0700
    23.3 @@ -1,5 +1,5 @@
    23.4  /*
    23.5 - * Copyright 2007 Sun Microsystems, Inc.  All Rights Reserved.
    23.6 + * Copyright 2007-2008 Sun Microsystems, Inc.  All Rights Reserved.
    23.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    23.8   *
    23.9   * This code is free software; you can redistribute it and/or modify it
    24.1 --- a/src/share/classes/com/sun/tools/classfile/InnerClasses_attribute.java	Wed Jun 25 23:30:55 2008 -0700
    24.2 +++ b/src/share/classes/com/sun/tools/classfile/InnerClasses_attribute.java	Fri Jul 04 15:06:27 2008 -0700
    24.3 @@ -1,5 +1,5 @@
    24.4  /*
    24.5 - * Copyright 2007 Sun Microsystems, Inc.  All Rights Reserved.
    24.6 + * Copyright 2007-2008 Sun Microsystems, Inc.  All Rights Reserved.
    24.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    24.8   *
    24.9   * This code is free software; you can redistribute it and/or modify it
    25.1 --- a/src/share/classes/com/sun/tools/classfile/LineNumberTable_attribute.java	Wed Jun 25 23:30:55 2008 -0700
    25.2 +++ b/src/share/classes/com/sun/tools/classfile/LineNumberTable_attribute.java	Fri Jul 04 15:06:27 2008 -0700
    25.3 @@ -1,5 +1,5 @@
    25.4  /*
    25.5 - * Copyright 2007 Sun Microsystems, Inc.  All Rights Reserved.
    25.6 + * Copyright 2007-2008 Sun Microsystems, Inc.  All Rights Reserved.
    25.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    25.8   *
    25.9   * This code is free software; you can redistribute it and/or modify it
    26.1 --- a/src/share/classes/com/sun/tools/classfile/LocalVariableTable_attribute.java	Wed Jun 25 23:30:55 2008 -0700
    26.2 +++ b/src/share/classes/com/sun/tools/classfile/LocalVariableTable_attribute.java	Fri Jul 04 15:06:27 2008 -0700
    26.3 @@ -1,5 +1,5 @@
    26.4  /*
    26.5 - * Copyright 2007 Sun Microsystems, Inc.  All Rights Reserved.
    26.6 + * Copyright 2007-2008 Sun Microsystems, Inc.  All Rights Reserved.
    26.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    26.8   *
    26.9   * This code is free software; you can redistribute it and/or modify it
    27.1 --- a/src/share/classes/com/sun/tools/classfile/LocalVariableTypeTable_attribute.java	Wed Jun 25 23:30:55 2008 -0700
    27.2 +++ b/src/share/classes/com/sun/tools/classfile/LocalVariableTypeTable_attribute.java	Fri Jul 04 15:06:27 2008 -0700
    27.3 @@ -1,5 +1,5 @@
    27.4  /*
    27.5 - * Copyright 2007 Sun Microsystems, Inc.  All Rights Reserved.
    27.6 + * Copyright 2007-2008 Sun Microsystems, Inc.  All Rights Reserved.
    27.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    27.8   *
    27.9   * This code is free software; you can redistribute it and/or modify it
    28.1 --- a/src/share/classes/com/sun/tools/classfile/Method.java	Wed Jun 25 23:30:55 2008 -0700
    28.2 +++ b/src/share/classes/com/sun/tools/classfile/Method.java	Fri Jul 04 15:06:27 2008 -0700
    28.3 @@ -1,5 +1,5 @@
    28.4  /*
    28.5 - * Copyright 2007 Sun Microsystems, Inc.  All Rights Reserved.
    28.6 + * Copyright 2007-2008 Sun Microsystems, Inc.  All Rights Reserved.
    28.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    28.8   *
    28.9   * This code is free software; you can redistribute it and/or modify it
    29.1 --- a/src/share/classes/com/sun/tools/classfile/ModuleExportTable_attribute.java	Wed Jun 25 23:30:55 2008 -0700
    29.2 +++ b/src/share/classes/com/sun/tools/classfile/ModuleExportTable_attribute.java	Fri Jul 04 15:06:27 2008 -0700
    29.3 @@ -1,5 +1,5 @@
    29.4  /*
    29.5 - * Copyright 2007 Sun Microsystems, Inc.  All Rights Reserved.
    29.6 + * Copyright 2007-2008 Sun Microsystems, Inc.  All Rights Reserved.
    29.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    29.8   *
    29.9   * This code is free software; you can redistribute it and/or modify it
    30.1 --- a/src/share/classes/com/sun/tools/classfile/ModuleMemberTable_attribute.java	Wed Jun 25 23:30:55 2008 -0700
    30.2 +++ b/src/share/classes/com/sun/tools/classfile/ModuleMemberTable_attribute.java	Fri Jul 04 15:06:27 2008 -0700
    30.3 @@ -1,5 +1,5 @@
    30.4  /*
    30.5 - * Copyright 2007 Sun Microsystems, Inc.  All Rights Reserved.
    30.6 + * Copyright 2007-2008 Sun Microsystems, Inc.  All Rights Reserved.
    30.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    30.8   *
    30.9   * This code is free software; you can redistribute it and/or modify it
    31.1 --- a/src/share/classes/com/sun/tools/classfile/Module_attribute.java	Wed Jun 25 23:30:55 2008 -0700
    31.2 +++ b/src/share/classes/com/sun/tools/classfile/Module_attribute.java	Fri Jul 04 15:06:27 2008 -0700
    31.3 @@ -1,5 +1,5 @@
    31.4  /*
    31.5 - * Copyright 2007 Sun Microsystems, Inc.  All Rights Reserved.
    31.6 + * Copyright 2007-2008 Sun Microsystems, Inc.  All Rights Reserved.
    31.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    31.8   *
    31.9   * This code is free software; you can redistribute it and/or modify it
    32.1 --- a/src/share/classes/com/sun/tools/classfile/OpCodes.java	Wed Jun 25 23:30:55 2008 -0700
    32.2 +++ b/src/share/classes/com/sun/tools/classfile/OpCodes.java	Fri Jul 04 15:06:27 2008 -0700
    32.3 @@ -1,5 +1,5 @@
    32.4  /*
    32.5 - * Copyright 2007 Sun Microsystems, Inc.  All Rights Reserved.
    32.6 + * Copyright 2007-2008 Sun Microsystems, Inc.  All Rights Reserved.
    32.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    32.8   *
    32.9   * This code is free software; you can redistribute it and/or modify it
    33.1 --- a/src/share/classes/com/sun/tools/classfile/RuntimeAnnotations_attribute.java	Wed Jun 25 23:30:55 2008 -0700
    33.2 +++ b/src/share/classes/com/sun/tools/classfile/RuntimeAnnotations_attribute.java	Fri Jul 04 15:06:27 2008 -0700
    33.3 @@ -1,5 +1,5 @@
    33.4  /*
    33.5 - * Copyright 2007 Sun Microsystems, Inc.  All Rights Reserved.
    33.6 + * Copyright 2007-2008 Sun Microsystems, Inc.  All Rights Reserved.
    33.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    33.8   *
    33.9   * This code is free software; you can redistribute it and/or modify it
    34.1 --- a/src/share/classes/com/sun/tools/classfile/RuntimeInvisibleAnnotations_attribute.java	Wed Jun 25 23:30:55 2008 -0700
    34.2 +++ b/src/share/classes/com/sun/tools/classfile/RuntimeInvisibleAnnotations_attribute.java	Fri Jul 04 15:06:27 2008 -0700
    34.3 @@ -1,5 +1,5 @@
    34.4  /*
    34.5 - * Copyright 2007 Sun Microsystems, Inc.  All Rights Reserved.
    34.6 + * Copyright 2007-2008 Sun Microsystems, Inc.  All Rights Reserved.
    34.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    34.8   *
    34.9   * This code is free software; you can redistribute it and/or modify it
    35.1 --- a/src/share/classes/com/sun/tools/classfile/RuntimeInvisibleParameterAnnotations_attribute.java	Wed Jun 25 23:30:55 2008 -0700
    35.2 +++ b/src/share/classes/com/sun/tools/classfile/RuntimeInvisibleParameterAnnotations_attribute.java	Fri Jul 04 15:06:27 2008 -0700
    35.3 @@ -1,5 +1,5 @@
    35.4  /*
    35.5 - * Copyright 2007 Sun Microsystems, Inc.  All Rights Reserved.
    35.6 + * Copyright 2007-2008 Sun Microsystems, Inc.  All Rights Reserved.
    35.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    35.8   *
    35.9   * This code is free software; you can redistribute it and/or modify it
    36.1 --- a/src/share/classes/com/sun/tools/classfile/RuntimeParameterAnnotations_attribute.java	Wed Jun 25 23:30:55 2008 -0700
    36.2 +++ b/src/share/classes/com/sun/tools/classfile/RuntimeParameterAnnotations_attribute.java	Fri Jul 04 15:06:27 2008 -0700
    36.3 @@ -1,5 +1,5 @@
    36.4  /*
    36.5 - * Copyright 2007 Sun Microsystems, Inc.  All Rights Reserved.
    36.6 + * Copyright 2007-2008 Sun Microsystems, Inc.  All Rights Reserved.
    36.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    36.8   *
    36.9   * This code is free software; you can redistribute it and/or modify it
    37.1 --- a/src/share/classes/com/sun/tools/classfile/RuntimeVisibleAnnotations_attribute.java	Wed Jun 25 23:30:55 2008 -0700
    37.2 +++ b/src/share/classes/com/sun/tools/classfile/RuntimeVisibleAnnotations_attribute.java	Fri Jul 04 15:06:27 2008 -0700
    37.3 @@ -1,5 +1,5 @@
    37.4  /*
    37.5 - * Copyright 2007 Sun Microsystems, Inc.  All Rights Reserved.
    37.6 + * Copyright 2007-2008 Sun Microsystems, Inc.  All Rights Reserved.
    37.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    37.8   *
    37.9   * This code is free software; you can redistribute it and/or modify it
    38.1 --- a/src/share/classes/com/sun/tools/classfile/RuntimeVisibleParameterAnnotations_attribute.java	Wed Jun 25 23:30:55 2008 -0700
    38.2 +++ b/src/share/classes/com/sun/tools/classfile/RuntimeVisibleParameterAnnotations_attribute.java	Fri Jul 04 15:06:27 2008 -0700
    38.3 @@ -1,5 +1,5 @@
    38.4  /*
    38.5 - * Copyright 2007 Sun Microsystems, Inc.  All Rights Reserved.
    38.6 + * Copyright 2007-2008 Sun Microsystems, Inc.  All Rights Reserved.
    38.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    38.8   *
    38.9   * This code is free software; you can redistribute it and/or modify it
    39.1 --- a/src/share/classes/com/sun/tools/classfile/Signature.java	Wed Jun 25 23:30:55 2008 -0700
    39.2 +++ b/src/share/classes/com/sun/tools/classfile/Signature.java	Fri Jul 04 15:06:27 2008 -0700
    39.3 @@ -1,5 +1,5 @@
    39.4  /*
    39.5 - * Copyright 2007 Sun Microsystems, Inc.  All Rights Reserved.
    39.6 + * Copyright 2007-2008 Sun Microsystems, Inc.  All Rights Reserved.
    39.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    39.8   *
    39.9   * This code is free software; you can redistribute it and/or modify it
    40.1 --- a/src/share/classes/com/sun/tools/classfile/Signature_attribute.java	Wed Jun 25 23:30:55 2008 -0700
    40.2 +++ b/src/share/classes/com/sun/tools/classfile/Signature_attribute.java	Fri Jul 04 15:06:27 2008 -0700
    40.3 @@ -1,5 +1,5 @@
    40.4  /*
    40.5 - * Copyright 2007 Sun Microsystems, Inc.  All Rights Reserved.
    40.6 + * Copyright 2007-2008 Sun Microsystems, Inc.  All Rights Reserved.
    40.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    40.8   *
    40.9   * This code is free software; you can redistribute it and/or modify it
    41.1 --- a/src/share/classes/com/sun/tools/classfile/SourceDebugExtension_attribute.java	Wed Jun 25 23:30:55 2008 -0700
    41.2 +++ b/src/share/classes/com/sun/tools/classfile/SourceDebugExtension_attribute.java	Fri Jul 04 15:06:27 2008 -0700
    41.3 @@ -1,5 +1,5 @@
    41.4  /*
    41.5 - * Copyright 2007 Sun Microsystems, Inc.  All Rights Reserved.
    41.6 + * Copyright 2007-2008 Sun Microsystems, Inc.  All Rights Reserved.
    41.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    41.8   *
    41.9   * This code is free software; you can redistribute it and/or modify it
    42.1 --- a/src/share/classes/com/sun/tools/classfile/SourceFile_attribute.java	Wed Jun 25 23:30:55 2008 -0700
    42.2 +++ b/src/share/classes/com/sun/tools/classfile/SourceFile_attribute.java	Fri Jul 04 15:06:27 2008 -0700
    42.3 @@ -1,5 +1,5 @@
    42.4  /*
    42.5 - * Copyright 2007 Sun Microsystems, Inc.  All Rights Reserved.
    42.6 + * Copyright 2007-2008 Sun Microsystems, Inc.  All Rights Reserved.
    42.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    42.8   *
    42.9   * This code is free software; you can redistribute it and/or modify it
    43.1 --- a/src/share/classes/com/sun/tools/classfile/StackMapTable_attribute.java	Wed Jun 25 23:30:55 2008 -0700
    43.2 +++ b/src/share/classes/com/sun/tools/classfile/StackMapTable_attribute.java	Fri Jul 04 15:06:27 2008 -0700
    43.3 @@ -1,5 +1,5 @@
    43.4  /*
    43.5 - * Copyright 2007 Sun Microsystems, Inc.  All Rights Reserved.
    43.6 + * Copyright 2007-2008 Sun Microsystems, Inc.  All Rights Reserved.
    43.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    43.8   *
    43.9   * This code is free software; you can redistribute it and/or modify it
    44.1 --- a/src/share/classes/com/sun/tools/classfile/StackMap_attribute.java	Wed Jun 25 23:30:55 2008 -0700
    44.2 +++ b/src/share/classes/com/sun/tools/classfile/StackMap_attribute.java	Fri Jul 04 15:06:27 2008 -0700
    44.3 @@ -1,5 +1,5 @@
    44.4  /*
    44.5 - * Copyright 2007 Sun Microsystems, Inc.  All Rights Reserved.
    44.6 + * Copyright 2007-2008 Sun Microsystems, Inc.  All Rights Reserved.
    44.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    44.8   *
    44.9   * This code is free software; you can redistribute it and/or modify it
    45.1 --- a/src/share/classes/com/sun/tools/classfile/Synthetic_attribute.java	Wed Jun 25 23:30:55 2008 -0700
    45.2 +++ b/src/share/classes/com/sun/tools/classfile/Synthetic_attribute.java	Fri Jul 04 15:06:27 2008 -0700
    45.3 @@ -1,5 +1,5 @@
    45.4  /*
    45.5 - * Copyright 2007 Sun Microsystems, Inc.  All Rights Reserved.
    45.6 + * Copyright 2007-2008 Sun Microsystems, Inc.  All Rights Reserved.
    45.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    45.8   *
    45.9   * This code is free software; you can redistribute it and/or modify it
    46.1 --- a/src/share/classes/com/sun/tools/javac/api/JavacTaskImpl.java	Wed Jun 25 23:30:55 2008 -0700
    46.2 +++ b/src/share/classes/com/sun/tools/javac/api/JavacTaskImpl.java	Fri Jul 04 15:06:27 2008 -0700
    46.3 @@ -1,5 +1,5 @@
    46.4  /*
    46.5 - * Copyright 2005-2006 Sun Microsystems, Inc.  All Rights Reserved.
    46.6 + * Copyright 2005-2008 Sun Microsystems, Inc.  All Rights Reserved.
    46.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    46.8   *
    46.9   * This code is free software; you can redistribute it and/or modify it
    47.1 --- a/src/share/classes/com/sun/tools/javac/api/JavacTool.java	Wed Jun 25 23:30:55 2008 -0700
    47.2 +++ b/src/share/classes/com/sun/tools/javac/api/JavacTool.java	Fri Jul 04 15:06:27 2008 -0700
    47.3 @@ -1,5 +1,5 @@
    47.4  /*
    47.5 - * Copyright 2005-2006 Sun Microsystems, Inc.  All Rights Reserved.
    47.6 + * Copyright 2005-2008 Sun Microsystems, Inc.  All Rights Reserved.
    47.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    47.8   *
    47.9   * This code is free software; you can redistribute it and/or modify it
    48.1 --- a/src/share/classes/com/sun/tools/javac/code/Lint.java	Wed Jun 25 23:30:55 2008 -0700
    48.2 +++ b/src/share/classes/com/sun/tools/javac/code/Lint.java	Fri Jul 04 15:06:27 2008 -0700
    48.3 @@ -1,5 +1,5 @@
    48.4  /*
    48.5 - * Copyright 2005-2006 Sun Microsystems, Inc.  All Rights Reserved.
    48.6 + * Copyright 2005-2008 Sun Microsystems, Inc.  All Rights Reserved.
    48.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    48.8   *
    48.9   * This code is free software; you can redistribute it and/or modify it
    49.1 --- a/src/share/classes/com/sun/tools/javac/code/Symbol.java	Wed Jun 25 23:30:55 2008 -0700
    49.2 +++ b/src/share/classes/com/sun/tools/javac/code/Symbol.java	Fri Jul 04 15:06:27 2008 -0700
    49.3 @@ -1,5 +1,5 @@
    49.4  /*
    49.5 - * Copyright 1999-2006 Sun Microsystems, Inc.  All Rights Reserved.
    49.6 + * Copyright 1999-2008 Sun Microsystems, Inc.  All Rights Reserved.
    49.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    49.8   *
    49.9   * This code is free software; you can redistribute it and/or modify it
    50.1 --- a/src/share/classes/com/sun/tools/javac/code/Type.java	Wed Jun 25 23:30:55 2008 -0700
    50.2 +++ b/src/share/classes/com/sun/tools/javac/code/Type.java	Fri Jul 04 15:06:27 2008 -0700
    50.3 @@ -1,5 +1,5 @@
    50.4  /*
    50.5 - * Copyright 1999-2006 Sun Microsystems, Inc.  All Rights Reserved.
    50.6 + * Copyright 1999-2008 Sun Microsystems, Inc.  All Rights Reserved.
    50.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    50.8   *
    50.9   * This code is free software; you can redistribute it and/or modify it
    51.1 --- a/src/share/classes/com/sun/tools/javac/code/Types.java	Wed Jun 25 23:30:55 2008 -0700
    51.2 +++ b/src/share/classes/com/sun/tools/javac/code/Types.java	Fri Jul 04 15:06:27 2008 -0700
    51.3 @@ -1,5 +1,5 @@
    51.4  /*
    51.5 - * Copyright 2003-2006 Sun Microsystems, Inc.  All Rights Reserved.
    51.6 + * Copyright 2003-2008 Sun Microsystems, Inc.  All Rights Reserved.
    51.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    51.8   *
    51.9   * This code is free software; you can redistribute it and/or modify it
    52.1 --- a/src/share/classes/com/sun/tools/javac/comp/Attr.java	Wed Jun 25 23:30:55 2008 -0700
    52.2 +++ b/src/share/classes/com/sun/tools/javac/comp/Attr.java	Fri Jul 04 15:06:27 2008 -0700
    52.3 @@ -1,5 +1,5 @@
    52.4  /*
    52.5 - * Copyright 1999-2006 Sun Microsystems, Inc.  All Rights Reserved.
    52.6 + * Copyright 1999-2008 Sun Microsystems, Inc.  All Rights Reserved.
    52.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    52.8   *
    52.9   * This code is free software; you can redistribute it and/or modify it
    53.1 --- a/src/share/classes/com/sun/tools/javac/comp/Check.java	Wed Jun 25 23:30:55 2008 -0700
    53.2 +++ b/src/share/classes/com/sun/tools/javac/comp/Check.java	Fri Jul 04 15:06:27 2008 -0700
    53.3 @@ -1,5 +1,5 @@
    53.4  /*
    53.5 - * Copyright 1999-2006 Sun Microsystems, Inc.  All Rights Reserved.
    53.6 + * Copyright 1999-2008 Sun Microsystems, Inc.  All Rights Reserved.
    53.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    53.8   *
    53.9   * This code is free software; you can redistribute it and/or modify it
    54.1 --- a/src/share/classes/com/sun/tools/javac/comp/Infer.java	Wed Jun 25 23:30:55 2008 -0700
    54.2 +++ b/src/share/classes/com/sun/tools/javac/comp/Infer.java	Fri Jul 04 15:06:27 2008 -0700
    54.3 @@ -1,5 +1,5 @@
    54.4  /*
    54.5 - * Copyright 1999-2006 Sun Microsystems, Inc.  All Rights Reserved.
    54.6 + * Copyright 1999-2008 Sun Microsystems, Inc.  All Rights Reserved.
    54.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    54.8   *
    54.9   * This code is free software; you can redistribute it and/or modify it
    55.1 --- a/src/share/classes/com/sun/tools/javac/comp/Lower.java	Wed Jun 25 23:30:55 2008 -0700
    55.2 +++ b/src/share/classes/com/sun/tools/javac/comp/Lower.java	Fri Jul 04 15:06:27 2008 -0700
    55.3 @@ -1,5 +1,5 @@
    55.4  /*
    55.5 - * Copyright 1999-2006 Sun Microsystems, Inc.  All Rights Reserved.
    55.6 + * Copyright 1999-2008 Sun Microsystems, Inc.  All Rights Reserved.
    55.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    55.8   *
    55.9   * This code is free software; you can redistribute it and/or modify it
    56.1 --- a/src/share/classes/com/sun/tools/javac/comp/MemberEnter.java	Wed Jun 25 23:30:55 2008 -0700
    56.2 +++ b/src/share/classes/com/sun/tools/javac/comp/MemberEnter.java	Fri Jul 04 15:06:27 2008 -0700
    56.3 @@ -1,5 +1,5 @@
    56.4  /*
    56.5 - * Copyright 2003-2006 Sun Microsystems, Inc.  All Rights Reserved.
    56.6 + * Copyright 2003-2008 Sun Microsystems, Inc.  All Rights Reserved.
    56.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    56.8   *
    56.9   * This code is free software; you can redistribute it and/or modify it
    57.1 --- a/src/share/classes/com/sun/tools/javac/comp/Resolve.java	Wed Jun 25 23:30:55 2008 -0700
    57.2 +++ b/src/share/classes/com/sun/tools/javac/comp/Resolve.java	Fri Jul 04 15:06:27 2008 -0700
    57.3 @@ -1,5 +1,5 @@
    57.4  /*
    57.5 - * Copyright 1999-2006 Sun Microsystems, Inc.  All Rights Reserved.
    57.6 + * Copyright 1999-2008 Sun Microsystems, Inc.  All Rights Reserved.
    57.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    57.8   *
    57.9   * This code is free software; you can redistribute it and/or modify it
    58.1 --- a/src/share/classes/com/sun/tools/javac/comp/TransTypes.java	Wed Jun 25 23:30:55 2008 -0700
    58.2 +++ b/src/share/classes/com/sun/tools/javac/comp/TransTypes.java	Fri Jul 04 15:06:27 2008 -0700
    58.3 @@ -1,5 +1,5 @@
    58.4  /*
    58.5 - * Copyright 1999-2006 Sun Microsystems, Inc.  All Rights Reserved.
    58.6 + * Copyright 1999-2008 Sun Microsystems, Inc.  All Rights Reserved.
    58.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    58.8   *
    58.9   * This code is free software; you can redistribute it and/or modify it
    59.1 --- a/src/share/classes/com/sun/tools/javac/file/BaseFileObject.java	Wed Jun 25 23:30:55 2008 -0700
    59.2 +++ b/src/share/classes/com/sun/tools/javac/file/BaseFileObject.java	Fri Jul 04 15:06:27 2008 -0700
    59.3 @@ -1,5 +1,5 @@
    59.4  /*
    59.5 - * Copyright 2005-2006 Sun Microsystems, Inc.  All Rights Reserved.
    59.6 + * Copyright 2005-2008 Sun Microsystems, Inc.  All Rights Reserved.
    59.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    59.8   *
    59.9   * This code is free software; you can redistribute it and/or modify it
    60.1 --- a/src/share/classes/com/sun/tools/javac/file/Old199.java	Wed Jun 25 23:30:55 2008 -0700
    60.2 +++ b/src/share/classes/com/sun/tools/javac/file/Old199.java	Fri Jul 04 15:06:27 2008 -0700
    60.3 @@ -1,5 +1,5 @@
    60.4  /*
    60.5 - * Copyright 2006 Sun Microsystems, Inc.  All Rights Reserved.
    60.6 + * Copyright 2006-2008 Sun Microsystems, Inc.  All Rights Reserved.
    60.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    60.8   *
    60.9   * This code is free software; you can redistribute it and/or modify it
    61.1 --- a/src/share/classes/com/sun/tools/javac/file/Paths.java	Wed Jun 25 23:30:55 2008 -0700
    61.2 +++ b/src/share/classes/com/sun/tools/javac/file/Paths.java	Fri Jul 04 15:06:27 2008 -0700
    61.3 @@ -1,5 +1,5 @@
    61.4  /*
    61.5 - * Copyright 2003-2006 Sun Microsystems, Inc.  All Rights Reserved.
    61.6 + * Copyright 2003-2008 Sun Microsystems, Inc.  All Rights Reserved.
    61.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    61.8   *
    61.9   * This code is free software; you can redistribute it and/or modify it
    62.1 --- a/src/share/classes/com/sun/tools/javac/jvm/ClassReader.java	Wed Jun 25 23:30:55 2008 -0700
    62.2 +++ b/src/share/classes/com/sun/tools/javac/jvm/ClassReader.java	Fri Jul 04 15:06:27 2008 -0700
    62.3 @@ -1,5 +1,5 @@
    62.4  /*
    62.5 - * Copyright 1999-2006 Sun Microsystems, Inc.  All Rights Reserved.
    62.6 + * Copyright 1999-2008 Sun Microsystems, Inc.  All Rights Reserved.
    62.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    62.8   *
    62.9   * This code is free software; you can redistribute it and/or modify it
    63.1 --- a/src/share/classes/com/sun/tools/javac/main/JavaCompiler.java	Wed Jun 25 23:30:55 2008 -0700
    63.2 +++ b/src/share/classes/com/sun/tools/javac/main/JavaCompiler.java	Fri Jul 04 15:06:27 2008 -0700
    63.3 @@ -1,5 +1,5 @@
    63.4  /*
    63.5 - * Copyright 1999-2006 Sun Microsystems, Inc.  All Rights Reserved.
    63.6 + * Copyright 1999-2008 Sun Microsystems, Inc.  All Rights Reserved.
    63.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    63.8   *
    63.9   * This code is free software; you can redistribute it and/or modify it
    64.1 --- a/src/share/classes/com/sun/tools/javac/main/JavacOption.java	Wed Jun 25 23:30:55 2008 -0700
    64.2 +++ b/src/share/classes/com/sun/tools/javac/main/JavacOption.java	Fri Jul 04 15:06:27 2008 -0700
    64.3 @@ -1,5 +1,5 @@
    64.4  /*
    64.5 - * Copyright 2006 Sun Microsystems, Inc.  All Rights Reserved.
    64.6 + * Copyright 2006-2008 Sun Microsystems, Inc.  All Rights Reserved.
    64.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    64.8   *
    64.9   * This code is free software; you can redistribute it and/or modify it
    65.1 --- a/src/share/classes/com/sun/tools/javac/main/Main.java	Wed Jun 25 23:30:55 2008 -0700
    65.2 +++ b/src/share/classes/com/sun/tools/javac/main/Main.java	Fri Jul 04 15:06:27 2008 -0700
    65.3 @@ -1,5 +1,5 @@
    65.4  /*
    65.5 - * Copyright 1999-2006 Sun Microsystems, Inc.  All Rights Reserved.
    65.6 + * Copyright 1999-2008 Sun Microsystems, Inc.  All Rights Reserved.
    65.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    65.8   *
    65.9   * This code is free software; you can redistribute it and/or modify it
    66.1 --- a/src/share/classes/com/sun/tools/javac/main/OptionName.java	Wed Jun 25 23:30:55 2008 -0700
    66.2 +++ b/src/share/classes/com/sun/tools/javac/main/OptionName.java	Fri Jul 04 15:06:27 2008 -0700
    66.3 @@ -1,5 +1,5 @@
    66.4  /*
    66.5 - * Copyright 2006 Sun Microsystems, Inc.  All Rights Reserved.
    66.6 + * Copyright 2006-2008 Sun Microsystems, Inc.  All Rights Reserved.
    66.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    66.8   *
    66.9   * This code is free software; you can redistribute it and/or modify it
    67.1 --- a/src/share/classes/com/sun/tools/javac/main/RecognizedOptions.java	Wed Jun 25 23:30:55 2008 -0700
    67.2 +++ b/src/share/classes/com/sun/tools/javac/main/RecognizedOptions.java	Fri Jul 04 15:06:27 2008 -0700
    67.3 @@ -1,5 +1,5 @@
    67.4  /*
    67.5 - * Copyright 2006 Sun Microsystems, Inc.  All Rights Reserved.
    67.6 + * Copyright 2006-2008 Sun Microsystems, Inc.  All Rights Reserved.
    67.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    67.8   *
    67.9   * This code is free software; you can redistribute it and/or modify it
    68.1 --- a/src/share/classes/com/sun/tools/javac/parser/Parser.java	Wed Jun 25 23:30:55 2008 -0700
    68.2 +++ b/src/share/classes/com/sun/tools/javac/parser/Parser.java	Fri Jul 04 15:06:27 2008 -0700
    68.3 @@ -1,5 +1,5 @@
    68.4  /*
    68.5 - * Copyright 1999-2006 Sun Microsystems, Inc.  All Rights Reserved.
    68.6 + * Copyright 1999-2008 Sun Microsystems, Inc.  All Rights Reserved.
    68.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    68.8   *
    68.9   * This code is free software; you can redistribute it and/or modify it
    69.1 --- a/src/share/classes/com/sun/tools/javac/parser/Scanner.java	Wed Jun 25 23:30:55 2008 -0700
    69.2 +++ b/src/share/classes/com/sun/tools/javac/parser/Scanner.java	Fri Jul 04 15:06:27 2008 -0700
    69.3 @@ -1,5 +1,5 @@
    69.4  /*
    69.5 - * Copyright 1999-2006 Sun Microsystems, Inc.  All Rights Reserved.
    69.6 + * Copyright 1999-2008 Sun Microsystems, Inc.  All Rights Reserved.
    69.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    69.8   *
    69.9   * This code is free software; you can redistribute it and/or modify it
    70.1 --- a/src/share/classes/com/sun/tools/javac/processing/JavacProcessingEnvironment.java	Wed Jun 25 23:30:55 2008 -0700
    70.2 +++ b/src/share/classes/com/sun/tools/javac/processing/JavacProcessingEnvironment.java	Fri Jul 04 15:06:27 2008 -0700
    70.3 @@ -1,5 +1,5 @@
    70.4  /*
    70.5 - * Copyright 2005-2006 Sun Microsystems, Inc.  All Rights Reserved.
    70.6 + * Copyright 2005-2008 Sun Microsystems, Inc.  All Rights Reserved.
    70.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    70.8   *
    70.9   * This code is free software; you can redistribute it and/or modify it
    71.1 --- a/src/share/classes/com/sun/tools/javac/resources/compiler.properties	Wed Jun 25 23:30:55 2008 -0700
    71.2 +++ b/src/share/classes/com/sun/tools/javac/resources/compiler.properties	Fri Jul 04 15:06:27 2008 -0700
    71.3 @@ -1,5 +1,5 @@
    71.4  #
    71.5 -# Copyright 1999-2006 Sun Microsystems, Inc.  All Rights Reserved.
    71.6 +# Copyright 1999-2008 Sun Microsystems, Inc.  All Rights Reserved.
    71.7  # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    71.8  #
    71.9  # This code is free software; you can redistribute it and/or modify it
    72.1 --- a/src/share/classes/com/sun/tools/javac/util/DiagnosticFormatter.java	Wed Jun 25 23:30:55 2008 -0700
    72.2 +++ b/src/share/classes/com/sun/tools/javac/util/DiagnosticFormatter.java	Fri Jul 04 15:06:27 2008 -0700
    72.3 @@ -1,5 +1,5 @@
    72.4  /*
    72.5 - * Copyright 2005-2006 Sun Microsystems, Inc.  All Rights Reserved.
    72.6 + * Copyright 2005-2008 Sun Microsystems, Inc.  All Rights Reserved.
    72.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    72.8   *
    72.9   * This code is free software; you can redistribute it and/or modify it
    73.1 --- a/src/share/classes/com/sun/tools/javac/util/JCDiagnostic.java	Wed Jun 25 23:30:55 2008 -0700
    73.2 +++ b/src/share/classes/com/sun/tools/javac/util/JCDiagnostic.java	Fri Jul 04 15:06:27 2008 -0700
    73.3 @@ -1,5 +1,5 @@
    73.4  /*
    73.5 - * Copyright 2003-2006 Sun Microsystems, Inc.  All Rights Reserved.
    73.6 + * Copyright 2003-2008 Sun Microsystems, Inc.  All Rights Reserved.
    73.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    73.8   *
    73.9   * This code is free software; you can redistribute it and/or modify it
    74.1 --- a/src/share/classes/com/sun/tools/javac/util/Log.java	Wed Jun 25 23:30:55 2008 -0700
    74.2 +++ b/src/share/classes/com/sun/tools/javac/util/Log.java	Fri Jul 04 15:06:27 2008 -0700
    74.3 @@ -1,5 +1,5 @@
    74.4  /*
    74.5 - * Copyright 1999-2006 Sun Microsystems, Inc.  All Rights Reserved.
    74.6 + * Copyright 1999-2008 Sun Microsystems, Inc.  All Rights Reserved.
    74.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    74.8   *
    74.9   * This code is free software; you can redistribute it and/or modify it
    75.1 --- a/src/share/classes/com/sun/tools/javadoc/JavadocClassReader.java	Wed Jun 25 23:30:55 2008 -0700
    75.2 +++ b/src/share/classes/com/sun/tools/javadoc/JavadocClassReader.java	Fri Jul 04 15:06:27 2008 -0700
    75.3 @@ -1,5 +1,5 @@
    75.4  /*
    75.5 - * Copyright 2001-2006 Sun Microsystems, Inc.  All Rights Reserved.
    75.6 + * Copyright 2001-2008 Sun Microsystems, Inc.  All Rights Reserved.
    75.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    75.8   *
    75.9   * This code is free software; you can redistribute it and/or modify it
    76.1 --- a/src/share/classes/com/sun/tools/javadoc/JavadocTool.java	Wed Jun 25 23:30:55 2008 -0700
    76.2 +++ b/src/share/classes/com/sun/tools/javadoc/JavadocTool.java	Fri Jul 04 15:06:27 2008 -0700
    76.3 @@ -1,5 +1,5 @@
    76.4  /*
    76.5 - * Copyright 2001-2006 Sun Microsystems, Inc.  All Rights Reserved.
    76.6 + * Copyright 2001-2008 Sun Microsystems, Inc.  All Rights Reserved.
    76.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    76.8   *
    76.9   * This code is free software; you can redistribute it and/or modify it
    77.1 --- a/src/share/classes/com/sun/tools/javap/AnnotationWriter.java	Wed Jun 25 23:30:55 2008 -0700
    77.2 +++ b/src/share/classes/com/sun/tools/javap/AnnotationWriter.java	Fri Jul 04 15:06:27 2008 -0700
    77.3 @@ -1,5 +1,5 @@
    77.4  /*
    77.5 - * Copyright 2007 Sun Microsystems, Inc.  All Rights Reserved.
    77.6 + * Copyright 2007-2008 Sun Microsystems, Inc.  All Rights Reserved.
    77.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    77.8   *
    77.9   * This code is free software; you can redistribute it and/or modify it
    78.1 --- a/src/share/classes/com/sun/tools/javap/AttributeWriter.java	Wed Jun 25 23:30:55 2008 -0700
    78.2 +++ b/src/share/classes/com/sun/tools/javap/AttributeWriter.java	Fri Jul 04 15:06:27 2008 -0700
    78.3 @@ -1,5 +1,5 @@
    78.4  /*
    78.5 - * Copyright 2007 Sun Microsystems, Inc.  All Rights Reserved.
    78.6 + * Copyright 2007-2008 Sun Microsystems, Inc.  All Rights Reserved.
    78.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    78.8   *
    78.9   * This code is free software; you can redistribute it and/or modify it
    79.1 --- a/src/share/classes/com/sun/tools/javap/BasicWriter.java	Wed Jun 25 23:30:55 2008 -0700
    79.2 +++ b/src/share/classes/com/sun/tools/javap/BasicWriter.java	Fri Jul 04 15:06:27 2008 -0700
    79.3 @@ -1,5 +1,5 @@
    79.4  /*
    79.5 - * Copyright 2007 Sun Microsystems, Inc.  All Rights Reserved.
    79.6 + * Copyright 2007-2008 Sun Microsystems, Inc.  All Rights Reserved.
    79.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    79.8   *
    79.9   * This code is free software; you can redistribute it and/or modify it
    80.1 --- a/src/share/classes/com/sun/tools/javap/ClassWriter.java	Wed Jun 25 23:30:55 2008 -0700
    80.2 +++ b/src/share/classes/com/sun/tools/javap/ClassWriter.java	Fri Jul 04 15:06:27 2008 -0700
    80.3 @@ -1,5 +1,5 @@
    80.4  /*
    80.5 - * Copyright 2007 Sun Microsystems, Inc.  All Rights Reserved.
    80.6 + * Copyright 2007-2008 Sun Microsystems, Inc.  All Rights Reserved.
    80.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    80.8   *
    80.9   * This code is free software; you can redistribute it and/or modify it
    81.1 --- a/src/share/classes/com/sun/tools/javap/CodeWriter.java	Wed Jun 25 23:30:55 2008 -0700
    81.2 +++ b/src/share/classes/com/sun/tools/javap/CodeWriter.java	Fri Jul 04 15:06:27 2008 -0700
    81.3 @@ -1,5 +1,5 @@
    81.4  /*
    81.5 - * Copyright 2007 Sun Microsystems, Inc.  All Rights Reserved.
    81.6 + * Copyright 2007-2008 Sun Microsystems, Inc.  All Rights Reserved.
    81.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    81.8   *
    81.9   * This code is free software; you can redistribute it and/or modify it
    82.1 --- a/src/share/classes/com/sun/tools/javap/ConstantWriter.java	Wed Jun 25 23:30:55 2008 -0700
    82.2 +++ b/src/share/classes/com/sun/tools/javap/ConstantWriter.java	Fri Jul 04 15:06:27 2008 -0700
    82.3 @@ -1,5 +1,5 @@
    82.4  /*
    82.5 - * Copyright 2007 Sun Microsystems, Inc.  All Rights Reserved.
    82.6 + * Copyright 2007-2008 Sun Microsystems, Inc.  All Rights Reserved.
    82.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    82.8   *
    82.9   * This code is free software; you can redistribute it and/or modify it
    83.1 --- a/src/share/classes/com/sun/tools/javap/Context.java	Wed Jun 25 23:30:55 2008 -0700
    83.2 +++ b/src/share/classes/com/sun/tools/javap/Context.java	Fri Jul 04 15:06:27 2008 -0700
    83.3 @@ -1,5 +1,5 @@
    83.4  /*
    83.5 - * Copyright 2007 Sun Microsystems, Inc.  All Rights Reserved.
    83.6 + * Copyright 2007-2008 Sun Microsystems, Inc.  All Rights Reserved.
    83.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    83.8   *
    83.9   * This code is free software; you can redistribute it and/or modify it
    84.1 --- a/src/share/classes/com/sun/tools/javap/DisassemblerTool.java	Wed Jun 25 23:30:55 2008 -0700
    84.2 +++ b/src/share/classes/com/sun/tools/javap/DisassemblerTool.java	Fri Jul 04 15:06:27 2008 -0700
    84.3 @@ -1,5 +1,5 @@
    84.4  /*
    84.5 - * Copyright 2005-2006 Sun Microsystems, Inc.  All Rights Reserved.
    84.6 + * Copyright 2005-2008 Sun Microsystems, Inc.  All Rights Reserved.
    84.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    84.8   *
    84.9   * This code is free software; you can redistribute it and/or modify it
    85.1 --- a/src/share/classes/com/sun/tools/javap/InternalError.java	Wed Jun 25 23:30:55 2008 -0700
    85.2 +++ b/src/share/classes/com/sun/tools/javap/InternalError.java	Fri Jul 04 15:06:27 2008 -0700
    85.3 @@ -1,5 +1,5 @@
    85.4  /*
    85.5 - * Copyright 2007 Sun Microsystems, Inc.  All Rights Reserved.
    85.6 + * Copyright 2007-2008 Sun Microsystems, Inc.  All Rights Reserved.
    85.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    85.8   *
    85.9   * This code is free software; you can redistribute it and/or modify it
    86.1 --- a/src/share/classes/com/sun/tools/javap/JavapFileManager.java	Wed Jun 25 23:30:55 2008 -0700
    86.2 +++ b/src/share/classes/com/sun/tools/javap/JavapFileManager.java	Fri Jul 04 15:06:27 2008 -0700
    86.3 @@ -1,5 +1,5 @@
    86.4  /*
    86.5 - * Copyright 2007 Sun Microsystems, Inc.  All Rights Reserved.
    86.6 + * Copyright 2007-2008 Sun Microsystems, Inc.  All Rights Reserved.
    86.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    86.8   *
    86.9   * This code is free software; you can redistribute it and/or modify it
    87.1 --- a/src/share/classes/com/sun/tools/javap/JavapTask.java	Wed Jun 25 23:30:55 2008 -0700
    87.2 +++ b/src/share/classes/com/sun/tools/javap/JavapTask.java	Fri Jul 04 15:06:27 2008 -0700
    87.3 @@ -1,5 +1,5 @@
    87.4  /*
    87.5 - * Copyright 2007 Sun Microsystems, Inc.  All Rights Reserved.
    87.6 + * Copyright 2007-2008 Sun Microsystems, Inc.  All Rights Reserved.
    87.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    87.8   *
    87.9   * This code is free software; you can redistribute it and/or modify it
    88.1 --- a/src/share/classes/com/sun/tools/javap/Main.java	Wed Jun 25 23:30:55 2008 -0700
    88.2 +++ b/src/share/classes/com/sun/tools/javap/Main.java	Fri Jul 04 15:06:27 2008 -0700
    88.3 @@ -1,5 +1,5 @@
    88.4  /*
    88.5 - * Copyright 2007 Sun Microsystems, Inc.  All Rights Reserved.
    88.6 + * Copyright 2007-2008 Sun Microsystems, Inc.  All Rights Reserved.
    88.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    88.8   *
    88.9   * This code is free software; you can redistribute it and/or modify it
    89.1 --- a/src/share/classes/com/sun/tools/javap/Options.java	Wed Jun 25 23:30:55 2008 -0700
    89.2 +++ b/src/share/classes/com/sun/tools/javap/Options.java	Fri Jul 04 15:06:27 2008 -0700
    89.3 @@ -1,5 +1,5 @@
    89.4  /*
    89.5 - * Copyright 2007 Sun Microsystems, Inc.  All Rights Reserved.
    89.6 + * Copyright 2007-2008 Sun Microsystems, Inc.  All Rights Reserved.
    89.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    89.8   *
    89.9   * This code is free software; you can redistribute it and/or modify it
    90.1 --- a/src/share/classes/sun/tools/javap/ClassData.java	Wed Jun 25 23:30:55 2008 -0700
    90.2 +++ b/src/share/classes/sun/tools/javap/ClassData.java	Fri Jul 04 15:06:27 2008 -0700
    90.3 @@ -1,5 +1,5 @@
    90.4  /*
    90.5 - * Copyright 2002-2004 Sun Microsystems, Inc.  All Rights Reserved.
    90.6 + * Copyright 2002-2008 Sun Microsystems, Inc.  All Rights Reserved.
    90.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    90.8   *
    90.9   * This code is free software; you can redistribute it and/or modify it
    91.1 --- a/src/share/classes/sun/tools/javap/FieldData.java	Wed Jun 25 23:30:55 2008 -0700
    91.2 +++ b/src/share/classes/sun/tools/javap/FieldData.java	Fri Jul 04 15:06:27 2008 -0700
    91.3 @@ -1,5 +1,5 @@
    91.4  /*
    91.5 - * Copyright 2002 Sun Microsystems, Inc.  All Rights Reserved.
    91.6 + * Copyright 2002-2008 Sun Microsystems, Inc.  All Rights Reserved.
    91.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    91.8   *
    91.9   * This code is free software; you can redistribute it and/or modify it
    92.1 --- a/src/share/classes/sun/tools/javap/InnerClassData.java	Wed Jun 25 23:30:55 2008 -0700
    92.2 +++ b/src/share/classes/sun/tools/javap/InnerClassData.java	Fri Jul 04 15:06:27 2008 -0700
    92.3 @@ -1,5 +1,5 @@
    92.4  /*
    92.5 - * Copyright 2002 Sun Microsystems, Inc.  All Rights Reserved.
    92.6 + * Copyright 2002-2008 Sun Microsystems, Inc.  All Rights Reserved.
    92.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    92.8   *
    92.9   * This code is free software; you can redistribute it and/or modify it
    93.1 --- a/src/share/classes/sun/tools/javap/JavapPrinter.java	Wed Jun 25 23:30:55 2008 -0700
    93.2 +++ b/src/share/classes/sun/tools/javap/JavapPrinter.java	Fri Jul 04 15:06:27 2008 -0700
    93.3 @@ -1,5 +1,5 @@
    93.4  /*
    93.5 - * Copyright 2002-2005 Sun Microsystems, Inc.  All Rights Reserved.
    93.6 + * Copyright 2002-2008 Sun Microsystems, Inc.  All Rights Reserved.
    93.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    93.8   *
    93.9   * This code is free software; you can redistribute it and/or modify it
    94.1 --- a/src/share/classes/sun/tools/javap/Main.java	Wed Jun 25 23:30:55 2008 -0700
    94.2 +++ b/src/share/classes/sun/tools/javap/Main.java	Fri Jul 04 15:06:27 2008 -0700
    94.3 @@ -1,5 +1,5 @@
    94.4  /*
    94.5 - * Copyright 2002-2003 Sun Microsystems, Inc.  All Rights Reserved.
    94.6 + * Copyright 2002-2008 Sun Microsystems, Inc.  All Rights Reserved.
    94.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    94.8   *
    94.9   * This code is free software; you can redistribute it and/or modify it
    95.1 --- a/src/share/classes/sun/tools/javap/MethodData.java	Wed Jun 25 23:30:55 2008 -0700
    95.2 +++ b/src/share/classes/sun/tools/javap/MethodData.java	Fri Jul 04 15:06:27 2008 -0700
    95.3 @@ -1,5 +1,5 @@
    95.4  /*
    95.5 - * Copyright 2002-2005 Sun Microsystems, Inc.  All Rights Reserved.
    95.6 + * Copyright 2002-2008 Sun Microsystems, Inc.  All Rights Reserved.
    95.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    95.8   *
    95.9   * This code is free software; you can redistribute it and/or modify it
    96.1 --- a/src/share/classes/sun/tools/javap/Tables.java	Wed Jun 25 23:30:55 2008 -0700
    96.2 +++ b/src/share/classes/sun/tools/javap/Tables.java	Fri Jul 04 15:06:27 2008 -0700
    96.3 @@ -1,5 +1,5 @@
    96.4  /*
    96.5 - * Copyright 2002-2005 Sun Microsystems, Inc.  All Rights Reserved.
    96.6 + * Copyright 2002-2008 Sun Microsystems, Inc.  All Rights Reserved.
    96.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    96.8   *
    96.9   * This code is free software; you can redistribute it and/or modify it
    97.1 --- a/src/share/classes/sun/tools/javap/TypeSignature.java	Wed Jun 25 23:30:55 2008 -0700
    97.2 +++ b/src/share/classes/sun/tools/javap/TypeSignature.java	Fri Jul 04 15:06:27 2008 -0700
    97.3 @@ -1,5 +1,5 @@
    97.4  /*
    97.5 - * Copyright 2002-2003 Sun Microsystems, Inc.  All Rights Reserved.
    97.6 + * Copyright 2002-2008 Sun Microsystems, Inc.  All Rights Reserved.
    97.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    97.8   *
    97.9   * This code is free software; you can redistribute it and/or modify it
    98.1 --- a/test/tools/javac/6304921/TestLog.java	Wed Jun 25 23:30:55 2008 -0700
    98.2 +++ b/test/tools/javac/6304921/TestLog.java	Fri Jul 04 15:06:27 2008 -0700
    98.3 @@ -1,5 +1,5 @@
    98.4  /*
    98.5 - * Copyright 2005-2006 Sun Microsystems, Inc.  All Rights Reserved.
    98.6 + * Copyright 2005-2008 Sun Microsystems, Inc.  All Rights Reserved.
    98.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    98.8   *
    98.9   * This code is free software; you can redistribute it and/or modify it
    99.1 --- a/test/tools/javac/6341866/T6341866.java	Wed Jun 25 23:30:55 2008 -0700
    99.2 +++ b/test/tools/javac/6341866/T6341866.java	Fri Jul 04 15:06:27 2008 -0700
    99.3 @@ -1,5 +1,5 @@
    99.4  /*
    99.5 - * Copyright 2006 Sun Microsystems, Inc.  All Rights Reserved.
    99.6 + * Copyright 2006-2008 Sun Microsystems, Inc.  All Rights Reserved.
    99.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    99.8   *
    99.9   * This code is free software; you can redistribute it and/or modify it
   100.1 --- a/test/tools/javac/T6358024.java	Wed Jun 25 23:30:55 2008 -0700
   100.2 +++ b/test/tools/javac/T6358024.java	Fri Jul 04 15:06:27 2008 -0700
   100.3 @@ -1,5 +1,5 @@
   100.4  /*
   100.5 - * Copyright 2006 Sun Microsystems, Inc.  All Rights Reserved.
   100.6 + * Copyright 2006-2008 Sun Microsystems, Inc.  All Rights Reserved.
   100.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   100.8   *
   100.9   * This code is free software; you can redistribute it and/or modify it
   101.1 --- a/test/tools/javac/T6358166.java	Wed Jun 25 23:30:55 2008 -0700
   101.2 +++ b/test/tools/javac/T6358166.java	Fri Jul 04 15:06:27 2008 -0700
   101.3 @@ -1,5 +1,5 @@
   101.4  /*
   101.5 - * Copyright 2006 Sun Microsystems, Inc.  All Rights Reserved.
   101.6 + * Copyright 2006-2008 Sun Microsystems, Inc.  All Rights Reserved.
   101.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   101.8   *
   101.9   * This code is free software; you can redistribute it and/or modify it
   102.1 --- a/test/tools/javac/T6358168.java	Wed Jun 25 23:30:55 2008 -0700
   102.2 +++ b/test/tools/javac/T6358168.java	Fri Jul 04 15:06:27 2008 -0700
   102.3 @@ -1,5 +1,5 @@
   102.4  /*
   102.5 - * Copyright 2006 Sun Microsystems, Inc.  All Rights Reserved.
   102.6 + * Copyright 2006-2008 Sun Microsystems, Inc.  All Rights Reserved.
   102.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   102.8   *
   102.9   * This code is free software; you can redistribute it and/or modify it
   103.1 --- a/test/tools/javac/api/6431257/T6431257.java	Wed Jun 25 23:30:55 2008 -0700
   103.2 +++ b/test/tools/javac/api/6431257/T6431257.java	Fri Jul 04 15:06:27 2008 -0700
   103.3 @@ -1,5 +1,5 @@
   103.4  /*
   103.5 - * Copyright 2006 Sun Microsystems, Inc.  All Rights Reserved.
   103.6 + * Copyright 2006-2008 Sun Microsystems, Inc.  All Rights Reserved.
   103.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   103.8   *
   103.9   * This code is free software; you can redistribute it and/or modify it
   104.1 --- a/test/tools/javac/api/T6358786.java	Wed Jun 25 23:30:55 2008 -0700
   104.2 +++ b/test/tools/javac/api/T6358786.java	Fri Jul 04 15:06:27 2008 -0700
   104.3 @@ -1,5 +1,5 @@
   104.4  /*
   104.5 - * Copyright 2005-2006 Sun Microsystems, Inc.  All Rights Reserved.
   104.6 + * Copyright 2005-2008 Sun Microsystems, Inc.  All Rights Reserved.
   104.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   104.8   *
   104.9   * This code is free software; you can redistribute it and/or modify it
   105.1 --- a/test/tools/javac/api/TestResolveIdent.java	Wed Jun 25 23:30:55 2008 -0700
   105.2 +++ b/test/tools/javac/api/TestResolveIdent.java	Fri Jul 04 15:06:27 2008 -0700
   105.3 @@ -1,5 +1,5 @@
   105.4  /*
   105.5 - * Copyright 2006 Sun Microsystems, Inc.  All Rights Reserved.
   105.6 + * Copyright 2006-2008 Sun Microsystems, Inc.  All Rights Reserved.
   105.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   105.8   *
   105.9   * This code is free software; you can redistribute it and/or modify it
   106.1 --- a/test/tools/javac/generics/Casting5.java	Wed Jun 25 23:30:55 2008 -0700
   106.2 +++ b/test/tools/javac/generics/Casting5.java	Fri Jul 04 15:06:27 2008 -0700
   106.3 @@ -1,5 +1,5 @@
   106.4  /*
   106.5 - * Copyright 2004 Sun Microsystems, Inc.  All Rights Reserved.
   106.6 + * Copyright 2004-2008 Sun Microsystems, Inc.  All Rights Reserved.
   106.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   106.8   *
   106.9   * This code is free software; you can redistribute it and/or modify it
   107.1 --- a/test/tools/javac/generics/InheritanceConflict.java	Wed Jun 25 23:30:55 2008 -0700
   107.2 +++ b/test/tools/javac/generics/InheritanceConflict.java	Fri Jul 04 15:06:27 2008 -0700
   107.3 @@ -1,5 +1,5 @@
   107.4  /*
   107.5 - * Copyright 2004 Sun Microsystems, Inc.  All Rights Reserved.
   107.6 + * Copyright 2004-2008 Sun Microsystems, Inc.  All Rights Reserved.
   107.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   107.8   *
   107.9   * This code is free software; you can redistribute it and/or modify it
   108.1 --- a/test/tools/javac/generics/InheritanceConflict2.java	Wed Jun 25 23:30:55 2008 -0700
   108.2 +++ b/test/tools/javac/generics/InheritanceConflict2.java	Fri Jul 04 15:06:27 2008 -0700
   108.3 @@ -1,5 +1,5 @@
   108.4  /*
   108.5 - * Copyright 2004 Sun Microsystems, Inc.  All Rights Reserved.
   108.6 + * Copyright 2004-2008 Sun Microsystems, Inc.  All Rights Reserved.
   108.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   108.8   *
   108.9   * This code is free software; you can redistribute it and/or modify it
   109.1 --- a/test/tools/javac/generics/wildcards/T6450290.java	Wed Jun 25 23:30:55 2008 -0700
   109.2 +++ b/test/tools/javac/generics/wildcards/T6450290.java	Fri Jul 04 15:06:27 2008 -0700
   109.3 @@ -1,5 +1,5 @@
   109.4  /*
   109.5 - * Copyright 2004-2006 Sun Microsystems, Inc.  All Rights Reserved.
   109.6 + * Copyright 2004-2008 Sun Microsystems, Inc.  All Rights Reserved.
   109.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   109.8   *
   109.9   * This code is free software; you can redistribute it and/or modify it
   110.1 --- a/test/tools/javac/util/filemanager/TestName.java	Wed Jun 25 23:30:55 2008 -0700
   110.2 +++ b/test/tools/javac/util/filemanager/TestName.java	Fri Jul 04 15:06:27 2008 -0700
   110.3 @@ -1,5 +1,5 @@
   110.4  /*
   110.5 - * Copyright 2006 Sun Microsystems, Inc.  All Rights Reserved.
   110.6 + * Copyright 2006-2008 Sun Microsystems, Inc.  All Rights Reserved.
   110.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   110.8   *
   110.9   * This code is free software; you can redistribute it and/or modify it
   111.1 --- a/test/tools/javap/OptionTest.java	Wed Jun 25 23:30:55 2008 -0700
   111.2 +++ b/test/tools/javap/OptionTest.java	Fri Jul 04 15:06:27 2008 -0700
   111.3 @@ -1,5 +1,5 @@
   111.4  /*
   111.5 - * Copyright 2007 Sun Microsystems, Inc.  All Rights Reserved.
   111.6 + * Copyright 2007-2008 Sun Microsystems, Inc.  All Rights Reserved.
   111.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   111.8   *
   111.9   * This code is free software; you can redistribute it and/or modify it

mercurial