From bbf4f47e8611b291924cc970dd6f60de91288f1a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=96=9F=E9=85=8C=20=E9=B5=AC=E5=85=84?= Date: Wed, 16 Mar 2016 19:03:06 +0800 Subject: [PATCH] Remove the license header inside js files --- AD_LICENSE | 5 +++++ botanjs/src/System/utils/Perf.js | 5 ----- botanjs/src/_this.js | 14 -------------- 3 files changed, 5 insertions(+), 19 deletions(-) create mode 100644 AD_LICENSE diff --git a/AD_LICENSE b/AD_LICENSE new file mode 100644 index 0000000..66cdb1e --- /dev/null +++ b/AD_LICENSE @@ -0,0 +1,5 @@ +/** + * author: Jeff Ward (jcward.com). + * license: MIT license + * link: http://stackoverflow.com/questions/105034/how-to-create-a-guid-uuid-in-javascript/21963136#21963136 + **/ diff --git a/botanjs/src/System/utils/Perf.js b/botanjs/src/System/utils/Perf.js index 237ee47..4b0c82e 100644 --- a/botanjs/src/System/utils/Perf.js +++ b/botanjs/src/System/utils/Perf.js @@ -2,11 +2,6 @@ // Performance Functions var ns = __namespace( "System.utils.Perf" ); - /** {{{ Fast UUID generator, RFC4122 version 4 compliant. - * author: Jeff Ward (jcward.com). - * license: MIT license - * link: http://stackoverflow.com/questions/105034/how-to-create-a-guid-uuid-in-javascript/21963136#21963136 - **/ var lut = []; for ( var i=0; i < 256; i++ ) { diff --git a/botanjs/src/_this.js b/botanjs/src/_this.js index 0f6371e..18a7c10 100644 --- a/botanjs/src/_this.js +++ b/botanjs/src/_this.js @@ -1,17 +1,3 @@ -/** - * BotanJS - * http://botanjs.astropenguin.net/ - * - * @version - * 0.9.0b (August 14 2015) - * - * @copyright - * Copyright (C) 2014-2015 tgckpg. - * - * @license - * Licensed under GPL licenses. - */ - /*{{{ Shorthand Functions */ var __extends = function( obj, target ) { obj.prototype = Object.create( target.prototype );