From: MÃ¥rten Hedborg Date: Mon, 16 Mar 2015 10:45:40 +0000 (+0100) Subject: Added copyright info X-Git-Tag: rel_3_20_0_ga~8^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=refs%2Fpull%2F26%2Fhead;p=javassist.git Added copyright info --- diff --git a/src/main/javassist/tools/Callback.java b/src/main/javassist/tools/Callback.java index 96728913..26a4200e 100644 --- a/src/main/javassist/tools/Callback.java +++ b/src/main/javassist/tools/Callback.java @@ -1,3 +1,19 @@ +/* + * Javassist, a Java-bytecode translator toolkit. + * Copyright (C) 1999- 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 + * the License. Alternatively, the contents of this file may be used under + * the terms of the GNU Lesser General Public License Version 2.1 or later, + * or the Apache License Version 2.0. + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License + * for the specific language governing rights and limitations under the + * License. + */ + package javassist.tools; import javassist.CannotCompileException; @@ -29,6 +45,8 @@ import java.util.UUID; * } * }); * } + * + * @author Marten Hedborg */ public abstract class Callback { diff --git a/src/test/javassist/tools/CallbackTest.java b/src/test/javassist/tools/CallbackTest.java index a37ee61d..96632bda 100644 --- a/src/test/javassist/tools/CallbackTest.java +++ b/src/test/javassist/tools/CallbackTest.java @@ -33,7 +33,7 @@ public class CallbackTest extends TestCase { } }); - // Change class and invoke method(); + // Change class and invoke method; classToChange.toClass(); new DummyClass().dummyMethod(); }