]> source.dussan.org Git - javassist.git/commitdiff
Change the year in the copyright notices from 2004 to 2005.
authorchiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3>
Tue, 18 Jan 2005 07:08:50 +0000 (07:08 +0000)
committerchiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3>
Tue, 18 Jan 2005 07:08:50 +0000 (07:08 +0000)
git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@153 30ef5769-5b8d-40dd-aea6-55b5d6557bb3

146 files changed:
src/main/javassist/ByteArrayClassPath.java
src/main/javassist/CannotCompileException.java
src/main/javassist/ClassClassPath.java
src/main/javassist/ClassMap.java
src/main/javassist/ClassPath.java
src/main/javassist/ClassPool.java
src/main/javassist/ClassPoolTail.java
src/main/javassist/CodeConverter.java
src/main/javassist/CtArray.java
src/main/javassist/CtBehavior.java
src/main/javassist/CtClass.java
src/main/javassist/CtClassType.java
src/main/javassist/CtConstructor.java
src/main/javassist/CtField.java
src/main/javassist/CtMember.java
src/main/javassist/CtMethod.java
src/main/javassist/CtNewClass.java
src/main/javassist/CtNewConstructor.java
src/main/javassist/CtNewMethod.java
src/main/javassist/CtNewNestedClass.java
src/main/javassist/CtNewWrappedConstructor.java
src/main/javassist/CtNewWrappedMethod.java
src/main/javassist/CtPrimitiveType.java
src/main/javassist/Dump.java
src/main/javassist/Loader.java
src/main/javassist/LoaderClassPath.java
src/main/javassist/Modifier.java
src/main/javassist/NotFoundException.java
src/main/javassist/SerialVersionUID.java
src/main/javassist/Translator.java
src/main/javassist/URLClassPath.java
src/main/javassist/bytecode/AccessFlag.java
src/main/javassist/bytecode/AnnotationsAttribute.java
src/main/javassist/bytecode/AttributeInfo.java
src/main/javassist/bytecode/BadBytecode.java
src/main/javassist/bytecode/ByteArray.java
src/main/javassist/bytecode/Bytecode.java
src/main/javassist/bytecode/ClassFile.java
src/main/javassist/bytecode/ClassFileWriter.java
src/main/javassist/bytecode/CodeAnalyzer.java
src/main/javassist/bytecode/CodeAttribute.java
src/main/javassist/bytecode/CodeIterator.java
src/main/javassist/bytecode/ConstPool.java
src/main/javassist/bytecode/ConstantAttribute.java
src/main/javassist/bytecode/DeprecatedAttribute.java
src/main/javassist/bytecode/Descriptor.java
src/main/javassist/bytecode/EnclosingMethodAttribute.java
src/main/javassist/bytecode/ExceptionTable.java
src/main/javassist/bytecode/ExceptionsAttribute.java
src/main/javassist/bytecode/FieldInfo.java
src/main/javassist/bytecode/InnerClassesAttribute.java
src/main/javassist/bytecode/LineNumberAttribute.java
src/main/javassist/bytecode/LocalVariableAttribute.java
src/main/javassist/bytecode/LongVector.java
src/main/javassist/bytecode/MethodInfo.java
src/main/javassist/bytecode/Mnemonic.java
src/main/javassist/bytecode/Opcode.java
src/main/javassist/bytecode/ParameterAnnotationsAttribute.java
src/main/javassist/bytecode/SignatureAttribute.java
src/main/javassist/bytecode/SourceFileAttribute.java
src/main/javassist/bytecode/SyntheticAttribute.java
src/main/javassist/bytecode/annotation/AnnotationsWriter.java
src/main/javassist/compiler/AccessorMaker.java
src/main/javassist/compiler/CodeGen.java
src/main/javassist/compiler/CompileError.java
src/main/javassist/compiler/Javac.java
src/main/javassist/compiler/JvstCodeGen.java
src/main/javassist/compiler/JvstTypeChecker.java
src/main/javassist/compiler/KeywordTable.java
src/main/javassist/compiler/Lex.java
src/main/javassist/compiler/MemberCodeGen.java
src/main/javassist/compiler/MemberResolver.java
src/main/javassist/compiler/NoFieldException.java
src/main/javassist/compiler/Parser.java
src/main/javassist/compiler/ProceedHandler.java
src/main/javassist/compiler/SymbolTable.java
src/main/javassist/compiler/SyntaxError.java
src/main/javassist/compiler/TokenId.java
src/main/javassist/compiler/TypeChecker.java
src/main/javassist/compiler/ast/ASTList.java
src/main/javassist/compiler/ast/ASTree.java
src/main/javassist/compiler/ast/AssignExpr.java
src/main/javassist/compiler/ast/BinExpr.java
src/main/javassist/compiler/ast/CallExpr.java
src/main/javassist/compiler/ast/CastExpr.java
src/main/javassist/compiler/ast/CondExpr.java
src/main/javassist/compiler/ast/Declarator.java
src/main/javassist/compiler/ast/DoubleConst.java
src/main/javassist/compiler/ast/Expr.java
src/main/javassist/compiler/ast/FieldDecl.java
src/main/javassist/compiler/ast/InstanceOfExpr.java
src/main/javassist/compiler/ast/IntConst.java
src/main/javassist/compiler/ast/Keyword.java
src/main/javassist/compiler/ast/Member.java
src/main/javassist/compiler/ast/MethodDecl.java
src/main/javassist/compiler/ast/NewExpr.java
src/main/javassist/compiler/ast/Pair.java
src/main/javassist/compiler/ast/Stmnt.java
src/main/javassist/compiler/ast/StringL.java
src/main/javassist/compiler/ast/Symbol.java
src/main/javassist/compiler/ast/Variable.java
src/main/javassist/compiler/ast/Visitor.java
src/main/javassist/convert/TransformAfter.java
src/main/javassist/convert/TransformBefore.java
src/main/javassist/convert/TransformCall.java
src/main/javassist/convert/TransformFieldAccess.java
src/main/javassist/convert/TransformNew.java
src/main/javassist/convert/TransformReadField.java
src/main/javassist/convert/TransformWriteField.java
src/main/javassist/convert/Transformer.java
src/main/javassist/expr/Cast.java
src/main/javassist/expr/Expr.java
src/main/javassist/expr/ExprEditor.java
src/main/javassist/expr/FieldAccess.java
src/main/javassist/expr/Handler.java
src/main/javassist/expr/Instanceof.java
src/main/javassist/expr/MethodCall.java
src/main/javassist/expr/NewArray.java
src/main/javassist/expr/NewExpr.java
src/main/javassist/preproc/Assistant.java
src/main/javassist/preproc/Compiler.java
src/main/javassist/reflect/CannotCreateException.java
src/main/javassist/reflect/CannotInvokeException.java
src/main/javassist/reflect/CannotReflectException.java
src/main/javassist/reflect/ClassMetaobject.java
src/main/javassist/reflect/Compiler.java
src/main/javassist/reflect/Loader.java
src/main/javassist/reflect/Metalevel.java
src/main/javassist/reflect/Metaobject.java
src/main/javassist/reflect/Reflection.java
src/main/javassist/reflect/Sample.java
src/main/javassist/rmi/AppletServer.java
src/main/javassist/rmi/ObjectImporter.java
src/main/javassist/rmi/ObjectNotFoundException.java
src/main/javassist/rmi/Proxy.java
src/main/javassist/rmi/RemoteException.java
src/main/javassist/rmi/RemoteRef.java
src/main/javassist/rmi/Sample.java
src/main/javassist/rmi/StubGenerator.java
src/main/javassist/runtime/Cflow.java
src/main/javassist/runtime/Desc.java
src/main/javassist/runtime/DotClass.java
src/main/javassist/runtime/Inner.java
src/main/javassist/web/BadHttpRequest.java
src/main/javassist/web/Viewer.java
src/main/javassist/web/Webserver.java

index 5e30249d6fa55357471958cd3b5728cfde93f357..2bcd25740c16e2425eeeca42d0f032313894bda8 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 042662810855c08495de0994f9232dcd2be83ef1..5d2b32233b780066852744f854e3e520f682ce49 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 1f75ede83b99c4ccdfb3cb78407af850a94dcaf1..1990f3ef496602e9e05ddbe79c0cede111f3a8ff 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 3d1fcd0d936bcd24218f82f92950c3d5faaaa55e..228eb2657b9693af51cc1b6c65a2d0ab5373bd41 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 15236f88028d8fa97094be877fe80bf36726bd3d..4148a59db5aa0915383813b1dcce5c1432820e8b 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 3e0ed6f5500b567ce33b87f6eb24b2602c3b3619..28b795c60bf7447e08d68d1fd2d7b000074a1982 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index ef576423d74920a7c49f692f7d31c1910eca2305..2f6fb1ea552a406ee3e3f42cad5f014df326a38c 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 7c06f6bf778a890c0a6203bfd109f52494cba4ee..240312dff5c469fd88b248548d0fb9ab89f0d01a 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index df7b84e64385d16dbbfd11df021616b878762171..e8e507210bb69ce7915fdc83405ef273f3530f26 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 3eac3eaf052a4a59786f8d9fcc3f02f92cc58bb7..92759e6fbb782335f86d8b95fc70323babcaab6f 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index d3de83c5c88e7a86ba2d604bf3332c9000925082..08b45dff1ad725b2bd0437bb6a1dedd773cc4766 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 2993a3438e2623169949705471c36c9235ed67d3..4fd3ff90a933c4ce3c10a6bd743b188208567273 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 707d6863f2acf74422605d3377bd596419d1f782..46fc334a6f37126ed1236d7d8deeb4a420fcc950 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index cfda5a2226a35e251e3d846ebc239c5ea2182b5f..931abf92ff01b7c3cdaa972196364dac0685e660 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 59741352044a550261252ad396c607a3f1b4de3d..8b2906db376d69303be55a0d9bfb0f244f6e798f 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 8195e9b481c58a1b045f003cafd17e948535ebf1..9c1532d0a746d04656f39c8315774d6143a17594 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index a1474cc100f40ed2a3fdbf056924a43c3983756c..4c49ce268d3a09bb501110c71470bd7921241f54 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 7bd47e9b1423e275b569fbae1825732d0a1907e9..43d64ebcdf74b30ba26f91200a5783f4d0957896 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 0a929d63df6c23086d0d58d4b8868af1d7e53d50..dbc408a8cf5c0bf3c89c6d5bdefc8364dab4e4a1 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index d79485cde9624f52803267bf0a272a52b27436b4..fd02130e50e47d8b11dc822c1b28961bbf8d55c1 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 94d13b9acd05600c41684a17d6d1fe275d1d11f7..b040f3d61d803ebe287d548c2c1c74606bb062f2 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 8c1369ecfe7b07d26fe534b0437ef8f39e2380c8..279b16f0d4d6d885f573236d065e6a3782dfc04b 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 14fe57b8e89f3d39cfc4da7e6b64670359edb4c0..0eec576e59a5e13dd8624b194b99b4da4d8b4d9f 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 2511f88cfeb429be5b0214fe445847a28a9f3ecf..69ba4625234b11fa836ff77a955f6798f864a385 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 8c4821dfdabc07f03921380dd8bcc24b9ffe218b..ff8d4ced8f9c8824894ba8fc5232e61fb1c0495c 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index d8a3954b94782c951d3114ab36d3af992353c0b9..34df7da3ab8c3fac3c4708fe913cae2d7a91ea15 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index c70d7086d3d40520662c05deb9d6627283a15340..01ac142512e5eb7704c74f13e9fc97390492426a 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 98b1b801d9146f10efbfd2367240c3c6cc015cfd..93723e455447595d9be11155b5a94844e167d373 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 61b9b8979792335b856e085d900c8ab84023b5a9..6ca744151cdc947ab5a64e17ccf205d6970d4de9 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index db5a95c9d8ce90b2f8cc312c379005f94ada8b3e..f2225609d02139e1192d66ebe3d2c31afc6e6e90 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index e5617680cdcd504db8ab1cd838e46400b3724fbc..e58466508c845fd4d041e692f546eae9da5301fa 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 6f18e096f976e18c9ddfcc032ca13bf4cab5fda2..7bd5bffcf45337b26226800431ee8dbf369c80ab 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 302004a63013c157838c1c7ba9e2f2f42621a9b4..a9fda5361ef07252f7c52a606831e1dffa4547f1 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 06d89904da492368e453adb75d4ebae79401bbcc..6fce79439a56dad6ead3a3ec4c6748f16d1bbd9e 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 812f0d6532245a348b939dd92d08f61b5208183d..225cdd3124c8483d08e3f9cc0bdd4ded62d808a1 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 0a9d16387bd7428eac61e74b6234d43fefabb06e..4c9b7f0fa9d15693873dd7fcfe7f065a34a06e68 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index d634ad26db890ad3eacf0ccfeee458e433a8cc20..444b43550ca3b217fda03200c43fc87588234bed 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 5c4bc1ccc7fdfe877c44d1083cc07f51ab5f6913..713e509d531cdeb5cb458a31a11216b5f3fa9818 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 9bf44e94fa187256eaf2a37983d2a416cb0d8706..57e221e164c1af358965f899d4a63587013a7f0e 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 4f034ae560b6ba447c45b821bbf9b4b261e28f15..b4afb95a5b6fccca66b89dc54aba0817e54b66d8 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 97742d8a3464c6abb7fadc544ad30824585d481a..038314d4e85afd5ddc3b3347acc6fe5e12a2fb6f 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 03da568e32a2269c40b882c02370c21d06b24e1a..531dfaa19be58aa50f005de0682fc2deec19f26f 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 920ac703e9c7fa3106674bc1962272bd3df87b36..ad5edc5b4fd68dc992c03367e33f8f3ec1d03c39 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 602b14a8130b6adc03690800f5743a00528b4844..eabf4c42fbd9819a19539fc51b1918c25e698a06 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index c7f697b2d0934d9d32aa2c274ca7420ce56fdedc..31bc1e51842cc79aab5e30d237c95d4d2a362416 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 1b07548cfc8c9165f876252b78d81315396009c0..efd7eaec85477c9c8734654ad6da285cec5fc83f 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 5ad928629d7c298189786e032dfc39af3e343fc3..cd5988301174ccd5dd799447c6ed05080d0b08aa 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index e2c20c9217d7bb03f4c7c9fd4df25c8ad345e4ce..7b0a8357ae606a32238bd5cfbae1d22b9c460372 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 0a1034528a75fc87ba2855909b31f0da800f4646..d022c5e68ab4e8e86e8e32762c5b1ae9866b4606 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 8c2ed0a1c67d15dbdb905964a52bd8dae8414561..02c73a321317a584ce2d6c3469ce5278eb07ab8a 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index f071f6d1c5eea5dde578be72ece1164bbfc82034..24e224ab9062b4aaa261a2d23fab6eee09cd9417 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index b6caceb72c21fc84478952d4eee8f7ecc853a31d..8374143b8fa07ac587b37fa12f6f27c3db345f57 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index ab66f67637bf3956c47775038df69e0a78567c81..6ccdd3211ce5e1a204169ab8b7f231407f6a3923 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 279bb4fd66d9fe993e8000096508cb8fc2d92e50..fd90045e0ef5ac4858df4c1b8203313832b0e17d 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 3889fe544fd10ea709cdf8f05a16e4d35dafe4e9..ffc7fcfc898eaa151000b0ddb041a7c95765569e 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
@@ -421,4 +421,4 @@ public final class MethodInfo {
             AttributeInfo.writeAll(attribute, out);
         }
     }
-}
\ No newline at end of file
+}
index 20ca8e7feb1028dd32397f5e1bf19ff0772dd6f8..723f50b453aa7fb91746286bcbfd46f397b9abc8 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index c0efbff1655e3c4063566833c0a4c04df15990e3..0f033f5fa3f13418c5f0d5e3a37899550818a560 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index e4c6e23578fb47973c66cf53a9bd625c20797895..35bcbe2af5f5b1d63c8a18c9229b1b0dc240a207 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
@@ -50,7 +50,7 @@ public class ParameterAnnotationsAttribute extends AttributeInfo {
      * attribute.
      */
     public static final String invisibleTag
-        = "RuntimeInvisibleParameterAnnotations";\r
+        = "RuntimeInvisibleParameterAnnotations";
     /**
      * Constructs
      * a <code>Runtime(In)VisisbleParameterAnnotations_attribute</code>.
index b6518ebff03cf99aea312046208daf316c1555b0..7dd4ba8c94ea15fcd4baf716a4c263808891b728 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 8a7ea5b3dafcc2d7a8420f53d258d3d6fa0018e0..c1a1533f9e5b3084f2f8a6ce48bebe8f600affa2 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 198499a7c20fcb7586aac23159c53274a431796b..5b092015a55281837ea64f902564c2eb6ba69ea2 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 0d60950346f3846ed4f46ac29ab756c5b80af1aa..ae2aaa141f62c85a3275af25bd6748565281e5ce 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 14f46194a9886ce0b46ebf4d46ead786d84685c2..4410a3421b6faad15b767ad83575689b2bea852d 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 18718f545efb999e5e146afb02d5077fd01cee19..3e7ae47cf1ca314617219a0aa52b3cccf6d8ffe9 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 5c877da8dfa085f01efa0e9b500947f3577df498..476b2a94ed5c45e9c6cdee63191bc1fb63bcdbdb 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 67d0cef566f0c4e6be6a253728ff0541ee0db162..abeb82902b50217b0688d91c7b85cc76e3699484 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 6800a9c8987cdbb819cf3ed41227d07ee4042038..7b38fdc5761575d7c15bc9e28445ce52fd788fb0 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index a32d6f0be4ae399cbd84c31fbc9bd636b2dddc7d..08833b6858c691566ad8d1e8b83b387bd9c032b6 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index e593769d21690bd76633eb642fd9107ffbb7c52d..c1e5c151595c8a293727af75c29760f1106fc3ff 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index e3f9d13d26055a4c297ec057ada4cf7cfee1c35a..fcd2d4d76d069d66cd82a6a0f640e7d480f5addd 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index b2e8d6fe6c49f002a3cd89ab32efed54163ec111..7ac6bba1b3e67b0c338338d548c052e8c0c17c06 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 08d9dd37c04d7df7e4e0cc9e014c99d068013ef3..6abec996d5df251eaa0e045e1bb43d180860319c 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index b2e09e6f96d14a013ba47d03f10ae4a9cc93b11e..2b20c15f66307029a1dd8cfa1a193dbc6d0c29f4 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 2286905ff0694af9620ce0fac194d3e03742695e..ed6e9dd301d20ff915b82fc9cfd439998d890ea3 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index f90188c9bf431e43e5154c0f01f25fd947ae4722..44bd6bad39a599ee422972ced16bfcb7dd114150 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 0107b373304a2d2a1c9d9037cce5b14ac33c548c..7d1adf048c5209df3e6783771615302e4d31e9fe 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 3f3503b4768b5e4e33aa91ce3783a23fde7a0ce6..2e4f1e0e28f96e616c99065ab6d8da9587d8dbf0 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 454cd9e44e5f234a8d83c7a8367b7d4a42c14fe7..090894c6fc9b5835d210e2758e5c95b1ebb1a976 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 3ce286cf18d85f5802fa40282d2020db0b0d0361..543ecdf8ec736335933c5dfc962ca6c40b512bff 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 47cfd29fb261e6a40d2608422a9c16c7aad1411a..0dfb8e17d3bd2535f05a161fdb0728f29339a7c0 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 1aabf1d41dcd8c82ae6364e2ac6d2ba3bed22696..2b04d6c47fd001e6a11d6693ee4b6da7e5649dcd 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 15e7b3c93878d8679b5abe8d72c87488005c2bda..c11cc604dd6607a1cfc63ebe532c20b6532b4a1b 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index d7d7ec2b89f861b37dba4a74ee04acae22645663..b1635dbef936a24f3431cbc134e1b5bbc5412065 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 0c90bf11c8093e1afcb59c2635a648871f52535d..88a3c762ba7a5c6ad2fc02d9fff12495a2fc0bde 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 06565b38f8cdd295909d14d3014b7a6ad01d733d..047e268d28ecdb7ec369a174961b17ba34b2fef5 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index f20da60232a9482c2e2a6befce36f1272057fa41..1894437e985e41dfbcb078a2c35a1e5cc1616b4d 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 7571115dc78dc09b02378b2d0ca6df463680252a..120510b5e68d790c7c16d87152a0fe22d0e443ab 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 27de8878c1f5b0a67a3f4b173ba92dd0f440ed96..d7ca53dc6009b41a31c4194cd8f1fd437dc99539 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 81ae582182ef39a0bf0825bb039c988a35b03ade..549f3117f78dd69c6f57808f7be7684722653b19 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 840cfa5a4b68c3071504bd5533c66fec9770fef9..d143249d27efc8f024b7ef0f60e9f3d74e1d6e3a 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index fcac663b5975ef7408a760282996be18e4efe8c4..80f42699cc4ddcfba07e6041ac1fde3009ebc3e2 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index b6204e1f4ccfa6ec8d00a0b0990372c0e5a8a636..6c9b395c6d833be7ccc91babae8d48b0d48302f5 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 26eb8cf82d7bc3466923b46fbe1e822b9126bd55..ccd8574db2d28bfb953e0a723da77437807a3f99 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index f0303cd313c67987dc596192e8f492072c2dbeb9..905bf6b4be36a97fc563179b541b479300289027 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index c9eebde9cac44e04aac706513446d40f09225f05..3ef44103b395e3d6140f78312aef80916481a728 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 4e12b3263313c0376b1cbbeeff4e7126233ab4c9..1a1a3f084f4d74a7c8146cd14d9501e138ffa81c 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 6797551008ad8a66334ce9bd3230f5ffa4c3ec83..be3ec5921bf7be44517dd24bd82e1ae38b0160fa 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 07834d36349d9068d3a61ce078a1fa9c1e131266..8abd66508c6e4ef1a80785df3bb61ab3cbe7cbad 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index c0e88153b785018993589d4b7d2e2ad5d4dcdf56..2bf1de0a680122fc9bab08edd306cd75d2d3cfd6 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 406beb290f45a0f00646cb5f7e81f88aff2833b2..a35a13cbe8d009b3f10e7792a3bd77bf682bd8a9 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 2020dd1116d56d202fbfc56038ff033f4314b8c3..f0c67bebb4fc991884862a25d0ddec8e4830bcfe 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 3738b5939adaf4ca30f8356148ad85a53c7228c2..f8af3198b76d9ff868c0e891f8ebdf4061c3f543 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 41c99e7f872ff21aebf73e6b335745639341024d..5378dc6032c40428a949a34e1fa87f8b20c447df 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index e1efa53fa82d0def24e5ce88c6a986f3428dcba5..49531e870c13429aa163e06ee3c4967c8b7840ff 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 400a49b56a896d2bee11d51b7ccaeafba6e8a018..6b389f9fb01cf6136a4334d3a08756c69524622f 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 45738326f7b1a55bc001508b2ac321aba245e987..b8d68af34b26af3cdd4a05621b8ee17c56c72d23 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 2abe90c1ec3ca91eec82bc2c8dc1e373b99ebded..6c17e7b2f378c09bd7616dc98b7dbe96d3c931c6 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 7d06376c3047641e37f76c7e4ed2b5213cb96417..2970cd27a00e845b9e098c0643619c2b386bda90 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 31d4e233cb474a71c1a4ddcba32ddd19b4f5bf86..78f4a42f91b6fb5b97e10692f9d5d8c4803bd418 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index e2fa87633ba2ff9b0a2c3cbc2090d3819a631e18..0644e507d9e23afed57a927fb4766692cd2c16cc 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 1c495c0800c2c1b85bed230c5a723d04f39875fd..5625e1d8a751a5d646a5c873348e3ee734d6d34d 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 3f47054a98566e48506e61aedc2a0c3157f4bbb5..7760aa6b416410da10cf39768cd6a16223bab31c 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
@@ -268,4 +268,4 @@ public abstract class Expr implements Opcode {
         maxLocals = bytecode.getMaxLocals();
         maxStack = bytecode.getMaxStack();
     }
-}
\ No newline at end of file
+}
index 8f7cacb8c6dcbaba749578f9468568151790bddd..340644737a54be2dff703d168d582e1304be3d02 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index a517443c51518ce7a28bd7c9cba258701714b27b..341159725dbcc510f763387d9360a02bb18eed7b 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index bdca0d5053aade255bb8b6cb6f9ace3eb9af2792..c949dc0ee6026a174a2cbc801a66c2c012a26c01 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 675034d2e7e235e71df86569f6bf53a81f0bb001..16db1857af098a41b83e19a8aea113a868f7e7e5 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index eac1fd1dd28fff0e988c65cf775d323ae68513e0..3bd7d098e08b43c8a26448fa459df514fb37bd34 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 3ad8b4600006ac84c9056f6824445ba535f97bd9..1181e6fc4cb938cb5fb6a739d434de661ce19b09 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index be33c76dc92c3753a8bdc07487b6f96c0a02a8b1..be457a38b1d34a040559249f80cbfd4ee353ea45 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 234ba22cc673cafb6b22ca916e3824adc8ac9e0a..a1944d692985f5198c6eb6526ee6214db789eb76 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 4f6f16060319514b11adecd540fd185403f28147..41c424e5824f8ec03686ee8b862f93951a863401 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index ccaabfa4838112379e9193689c34da0f9c2e9d4e..a0933830307efb9f3c5e80157088f7d58772e709 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 6f0ae1c4fd596bfb98cd38efdc0f2821773478d1..2a6cb9c21f609c7852fca942a08c2f9f7b7d6f75 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 3147e08e6f436e46fe42a6b1b42efde55f7e1b87..036ebf490caddaf3d376c2182e214d3054edd0ce 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 6d43b0e66ff8d22c762e9b90d197ba2b045bc3f9..bfbc3f4844b85574844c0f8273c370bd916b167a 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 3b5b1f70ef7050478b9453c70f7a022f69f5036b..734f598bf489c8cab6e6ea654dcdae8501591780 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 6838195640f9b03cc20fbc295c423ed4f14cab9e..76dce4d615ec503f1bc446f28120b372da9864b3 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 1ca4f2dc67b10b79b362fec656e17a4c5a828105..8192267a5746156e85a37bd2a4a0a059e37c4c23 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 20d23433de489875fc2c2926aa8dd39634d371ee..8c3749aae9ec17c6c73276888edbf34a7d77c4ea 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 014a615257ab4c61d53aa5a1e1219a9b1163e734..1d56de5bd7ade7a323b8c63bb782fa6814ddad74 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 90e78d735934a752b7785da6ab9b4794a821eccb..81bad691650f17ef6f042fa75059d0a05f51ae02 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 25658e59e559ae5d070480e91ebf5dea88556857..89cc92ab1d7684eac51a4bef8c25fe680cd0ec90 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 96e1eb95d77737b4bee79526cb219ad3a31411c6..adad468d4f7a84e594c48cd10b57c2fded130d9f 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 80f6c3bf594db2a54f2c7b9b8c82c44b9e758584..85bc316ef89725cbff672c92b7d88921f0b87e25 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index a8e4be73d058053f8cf527abadb84202a618938b..f627ac63c74326dd3fc41b70d210b6d5ed5bd297 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index cbf86361ae5a92044b0b00dac78ee34d75cfe817..ceb04f9fae9feeac033d1971611b95e640d141ed 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 1e90023d4de2974f1d964007457fa1d39c5b685a..fbd93addbad6d17f92c79ca8898affc9efdbd813 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 020d570b337bd81c52e9081dbeac4216b99ff53a..b632cd03555204bc54d854354cf9e6b9c1bfaa87 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 76c99e5e774bcc984464c812e83905777d2dfd85..ecf680c27e8e1305edd4f8c59de1f2de9a57827f 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index dbb3535dfca83d857f57f5a7e688cada266f2e01..13a44657d1641403ca8eb70c27adee387da896c9 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 15dcb5de238f1dae6961160816004f8219eea37b..36db6a1f2795e8b7bc8a1a009236ec4ac1892146 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 2c4ded97ff3fc28c56f2f415b7bc91473dde0b20..0e57cdf4e5a44542f54359177b3895fee2e81458 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 2aadf19b677cfa188720221da172526e234f9ac7..b7bdb03ec493197744a6476eaba489efac53cbc3 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index 81c73629ee967371725ff662afe5c404e97f0f8a..a1aee86a5efadf2d39789049841b18183b49bd79 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index e44f54b9ee44429ab481861b50e07d447d710c22..1e17c763dad3d9c9ced6440f90f4845745aa3506 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with
index ad1adc774d687cff381d980d9a777798b8c8a50d..4e41faa20b4806b9814711766f872818604d4481 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
+ * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
  *
  * The contents of this file are subject to the Mozilla Public License Version
  * 1.1 (the "License"); you may not use this file except in compliance with