From c897e05d33dbdc50afeb3a135bdf333192b8b27d Mon Sep 17 00:00:00 2001 From: Kane York Date: Sun, 15 Jun 2014 21:10:30 -0700 Subject: [PATCH] Add dual-licensing notice to Forge mapping code BSD-licensed version here: https://gist.github.com/riking/2f330f831c30e2276df7 As a note, @libraryaddict is not bound by the BSD license, but rather by the implicit license granted from me sending a pull request. Therefore, a LICENSE file is not needed in the distributed jar. --- .../disguise/utilities/ReflectionManager.java | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/me/libraryaddict/disguise/utilities/ReflectionManager.java b/src/me/libraryaddict/disguise/utilities/ReflectionManager.java index 3a53fc75..e7b356fa 100644 --- a/src/me/libraryaddict/disguise/utilities/ReflectionManager.java +++ b/src/me/libraryaddict/disguise/utilities/ReflectionManager.java @@ -85,6 +85,15 @@ public class ReflectionManager { private static final Field pingField; private static Map, String> primitiveTypes; private static final Field trackerField; + + /* + * This portion of code is originally Copyright (C) 2014-2014 Kane York. + * + * In addition to the implicit license granted to libraryaddict to redistribuite the code, the + * code is also licensed to the public under the BSD 2-clause license. + * + * The publicly licensed version may be viewed here: https://gist.github.com/riking/2f330f831c30e2276df7 + */ static { final String nameseg_class = "a-zA-Z0-9$_"; final String fqn_class = nameseg_class + "/";