Upgraded copyright information. Also added a LICENSE.MIT.sample file.
authorMarco Zanon <info@marcozanon.com>
Sun, 24 Dec 2017 21:16:14 +0000 (21:16 +0000)
committerMarco Zanon <info@marcozanon.com>
Sun, 24 Dec 2017 21:16:14 +0000 (21:16 +0000)
44 files changed:
6.x/LICENSE
6.x/LICENSE.MIT.sample [new file with mode: 0644]
6.x/src/java/com/marcozanon/macaco/MConstants.java
6.x/src/java/com/marcozanon/macaco/MException.java
6.x/src/java/com/marcozanon/macaco/MInformation.java
6.x/src/java/com/marcozanon/macaco/MObject.java
6.x/src/java/com/marcozanon/macaco/conversion/MConversionException.java
6.x/src/java/com/marcozanon/macaco/conversion/MDateConverter.java
6.x/src/java/com/marcozanon/macaco/conversion/MInvalidConversionFormatException.java
6.x/src/java/com/marcozanon/macaco/conversion/MLocalDateConverter.java
6.x/src/java/com/marcozanon/macaco/conversion/MLocalDateTimeConverter.java
6.x/src/java/com/marcozanon/macaco/conversion/MNumberConverter.java
6.x/src/java/com/marcozanon/macaco/database/MDatabaseConnection.java
6.x/src/java/com/marcozanon/macaco/database/MDatabaseConnectionFailureException.java
6.x/src/java/com/marcozanon/macaco/database/MDatabaseConnectionGenerator.java
6.x/src/java/com/marcozanon/macaco/database/MDatabaseConnectionPool.java
6.x/src/java/com/marcozanon/macaco/database/MDatabaseException.java
6.x/src/java/com/marcozanon/macaco/database/MSqlStatementException.java
6.x/src/java/com/marcozanon/macaco/database/MSqlStatementResults.java
6.x/src/java/com/marcozanon/macaco/database/MSqlTable.java
6.x/src/java/com/marcozanon/macaco/database/MSqlTransactionException.java
6.x/src/java/com/marcozanon/macaco/json/MInvalidJsonValueException.java
6.x/src/java/com/marcozanon/macaco/json/MJsonArray.java
6.x/src/java/com/marcozanon/macaco/json/MJsonBoolean.java
6.x/src/java/com/marcozanon/macaco/json/MJsonException.java
6.x/src/java/com/marcozanon/macaco/json/MJsonNull.java
6.x/src/java/com/marcozanon/macaco/json/MJsonNumber.java
6.x/src/java/com/marcozanon/macaco/json/MJsonObject.java
6.x/src/java/com/marcozanon/macaco/json/MJsonString.java
6.x/src/java/com/marcozanon/macaco/json/MJsonValue.java
6.x/src/java/com/marcozanon/macaco/logging/MLogDatabaseTable.java
6.x/src/java/com/marcozanon/macaco/logging/MLogFilter.java
6.x/src/java/com/marcozanon/macaco/logging/MLogListener.java
6.x/src/java/com/marcozanon/macaco/logging/MLogMessage.java
6.x/src/java/com/marcozanon/macaco/logging/MLogPlainTextFile.java
6.x/src/java/com/marcozanon/macaco/logging/MLogTarget.java
6.x/src/java/com/marcozanon/macaco/logging/MLoggingException.java
6.x/src/java/com/marcozanon/macaco/text/MText.java
6.x/src/java/com/marcozanon/macaco/text/MTextException.java
6.x/src/java/com/marcozanon/macaco/text/MTranslationException.java
6.x/src/java/com/marcozanon/macaco/text/MTranslationFileParsingException.java
6.x/src/java/com/marcozanon/macaco/text/MTranslationValueNotFoundException.java
6.x/src/java/com/marcozanon/macaco/text/MTranslator.java
6.x/src/java/com/marcozanon/macaco/text/MXhtmlUnsafeStringException.java

index 7eacd8f8fba1f4892b219c2fe384f952291fab5d..40635baa819aac38d882e44647c2b25f7378f906 100644 (file)
@@ -1,25 +1,7 @@
 Macaco
 Copyright (c) 2009-2017 Marco Zanon <info@marcozanon.com>.
 
-Released under MIT license:
-
-    Permission is hereby granted, free of charge, to any person obtaining a copy
-    of this software and associated documentation files (the "Software"), to deal
-    in the Software without restriction, including without limitation the rights
-    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-    copies of the Software, and to permit persons to whom the Software is
-    furnished to do so, subject to the following conditions:
-
-    The above copyright notice and this permission notice shall be included in
-    all copies or substantial portions of the Software.
-
-    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-    THE SOFTWARE.
+Released under MIT license (see LICENSE.MIT.sample for details).
 
 Small portions inspired by other projects or web pages.
 See source code for additional information.
diff --git a/6.x/LICENSE.MIT.sample b/6.x/LICENSE.MIT.sample
new file mode 100644 (file)
index 0000000..8aa2645
--- /dev/null
@@ -0,0 +1,21 @@
+MIT License
+
+Copyright (c) [year] [fullname]
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
index a2aec619edfee6846aa10293f9b2500995bc1861..24fefd00267fa0543daae09142ad638486b460a9 100644 (file)
@@ -1,7 +1,7 @@
 /**
  * Macaco
- * Copyright (c) 2009-2017 Marco Zanon <info@marcozanon.com>.
- * Released under MIT license (see LICENSE for details).
+ * Copyright (c) 2009-2018 Marco Zanon <info@marcozanon.com>.
+ * See LICENSE for details.
  */
 
 package com.marcozanon.macaco;
index dcfb946b542934a8f0467c890b91cd80c322b50d..c5a50e5fbd2a2119dde502fdc798fd637b7184dd 100644 (file)
@@ -1,7 +1,7 @@
 /**
  * Macaco
- * Copyright (c) 2009-2017 Marco Zanon <info@marcozanon.com>.
- * Released under MIT license (see LICENSE for details).
+ * Copyright (c) 2009-2018 Marco Zanon <info@marcozanon.com>.
+ * See LICENSE for details.
  */
 
 package com.marcozanon.macaco;
index 88c0087369d2521ab3d4d3e6f7d824b511132475..1751a50972e5c63b07f36fe38dee9a7622237ac5 100644 (file)
@@ -1,7 +1,7 @@
 /**
  * Macaco
- * Copyright (c) 2009-2017 Marco Zanon <info@marcozanon.com>.
- * Released under MIT license (see LICENSE for details).
+ * Copyright (c) 2009-2018 Marco Zanon <info@marcozanon.com>.
+ * See LICENSE for details.
  */
 
 package com.marcozanon.macaco;
@@ -24,8 +24,8 @@ public class MInformation extends MObject {
     public static String getMacacoCopyrightInformation() {
         StringBuilder s = new StringBuilder("");
         s.append(MInformation.getMacacoFullName() + System.getProperty("line.separator"));
-        s.append("Copyright (c) 2009-2017 by Marco Zanon." + System.getProperty("line.separator"));
-        s.append("Released under the MIT license. See LICENSE for additional information." + System.getProperty("line.separator"));
+        s.append("Copyright (c) 2009-2018 by Marco Zanon." + System.getProperty("line.separator"));
+        s.append("Released under MIT license (see LICENSE.MIT.sample for details)." + System.getProperty("line.separator"));
         s.append("Small portions inspired by other projects or web pages. See source code for additional information.");
         return s.toString();
     }
index 2dd478403805aeaa15be3de602eeecf2ef47dd3e..a15a532aceef4ba137b271ba5f043947f0f275fa 100644 (file)
@@ -1,7 +1,7 @@
 /**
  * Macaco
- * Copyright (c) 2009-2017 Marco Zanon <info@marcozanon.com>.
- * Released under MIT license (see LICENSE for details).
+ * Copyright (c) 2009-2018 Marco Zanon <info@marcozanon.com>.
+ * See LICENSE for details.
  */
 
 package com.marcozanon.macaco;
index ab626b2174badd6d38b17621744a4e0a80561a8c..1f80b7fd618ae6244dfbed504e4af2af10e64480 100644 (file)
@@ -1,7 +1,7 @@
 /**
  * Macaco
- * Copyright (c) 2009-2017 Marco Zanon <info@marcozanon.com>.
- * Released under MIT license (see LICENSE for details).
+ * Copyright (c) 2009-2018 Marco Zanon <info@marcozanon.com>.
+ * See LICENSE for details.
  */
 
 package com.marcozanon.macaco.conversion;
index 93d7ca037461561be0ff14530d89bbc46086c828..fb211a5bc1016ef6fff5fc0b8cbf17f02c8e2f87 100644 (file)
@@ -1,7 +1,7 @@
 /**
  * Macaco
- * Copyright (c) 2009-2017 Marco Zanon <info@marcozanon.com>.
- * Released under MIT license (see LICENSE for details).
+ * Copyright (c) 2009-2018 Marco Zanon <info@marcozanon.com>.
+ * See LICENSE for details.
  */
 
 package com.marcozanon.macaco.conversion;
index 98351acffd92d2553cb55018cdf78ffe6b783199..64ce94cdf4704c1e280ec34851e983bdb1678c86 100644 (file)
@@ -1,7 +1,7 @@
 /**
  * Macaco
- * Copyright (c) 2009-2017 Marco Zanon <info@marcozanon.com>.
- * Released under MIT license (see LICENSE for details).
+ * Copyright (c) 2009-2018 Marco Zanon <info@marcozanon.com>.
+ * See LICENSE for details.
  */
 
 package com.marcozanon.macaco.conversion;
index a949a24e7c0b28ff97ec9bcc3254a2264555a0f8..88671eb4a78941040dd402cdd6552c0b569f0cf9 100644 (file)
@@ -1,7 +1,7 @@
 /**
  * Macaco
- * Copyright (c) 2009-2017 Marco Zanon <info@marcozanon.com>.
- * Released under MIT license (see LICENSE for details).
+ * Copyright (c) 2009-2018 Marco Zanon <info@marcozanon.com>.
+ * See LICENSE for details.
  */
 
 package com.marcozanon.macaco.conversion;
index 4542e4bd13e1862e258a603d8d2f2d32f0200abb..0afd7553e7900b510585af13356ecc80d44aae3b 100644 (file)
@@ -1,7 +1,7 @@
 /**
  * Macaco
- * Copyright (c) 2009-2017 Marco Zanon <info@marcozanon.com>.
- * Released under MIT license (see LICENSE for details).
+ * Copyright (c) 2009-2018 Marco Zanon <info@marcozanon.com>.
+ * See LICENSE for details.
  */
 
 package com.marcozanon.macaco.conversion;
index 63e30330e322898b0adca365b51aab8a9215ba56..357a7e9672b6403de1778c90ddf041b501ba392f 100644 (file)
@@ -1,7 +1,7 @@
 /**
  * Macaco
- * Copyright (c) 2009-2017 Marco Zanon <info@marcozanon.com>.
- * Released under MIT license (see LICENSE for details).
+ * Copyright (c) 2009-2018 Marco Zanon <info@marcozanon.com>.
+ * See LICENSE for details.
  */
 
 package com.marcozanon.macaco.conversion;
index 52a0b6313fd2c71db380877259bc7a3c73e7984f..0e189a42dab981847a5151b4ce197b6e6e81c158 100644 (file)
@@ -1,7 +1,7 @@
 /**
  * Macaco
- * Copyright (c) 2009-2017 Marco Zanon <info@marcozanon.com>.
- * Released under MIT license (see LICENSE for details).
+ * Copyright (c) 2009-2018 Marco Zanon <info@marcozanon.com>.
+ * See LICENSE for details.
  */
 
 package com.marcozanon.macaco.database;
index e99c72e432e3f8c9bcd5b162ebcac9e4c0d7141d..064967a22082d7110e93bb8d6b849775774a6887 100644 (file)
@@ -1,7 +1,7 @@
 /**
  * Macaco
- * Copyright (c) 2009-2017 Marco Zanon <info@marcozanon.com>.
- * Released under MIT license (see LICENSE for details).
+ * Copyright (c) 2009-2018 Marco Zanon <info@marcozanon.com>.
+ * See LICENSE for details.
  */
 
 package com.marcozanon.macaco.database;
index 263ec6957236a5deaf67f82892048b5313bbf537..a2f44d98fcba8a413812b7086fbd656844488eae 100644 (file)
@@ -1,7 +1,7 @@
 /**
  * Macaco
- * Copyright (c) 2009-2017 Marco Zanon <info@marcozanon.com>.
- * Released under MIT license (see LICENSE for details).
+ * Copyright (c) 2009-2018 Marco Zanon <info@marcozanon.com>.
+ * See LICENSE for details.
  */
 
 package com.marcozanon.macaco.database;
index c47da59d1b3ba7c36e7c3f0eb2e0f9b36dcec7eb..78fe62023865dbd9f779f2a319743dc47e101b29 100644 (file)
@@ -1,7 +1,7 @@
 /**
  * Macaco
- * Copyright (c) 2009-2017 Marco Zanon <info@marcozanon.com>.
- * Released under MIT license (see LICENSE for details).
+ * Copyright (c) 2009-2018 Marco Zanon <info@marcozanon.com>.
+ * See LICENSE for details.
  */
 
 package com.marcozanon.macaco.database;
index ac132518679e2952291631eef920bc6a65ee4b76..764622e4d19d830030b815c645d087eb84a612f2 100644 (file)
@@ -1,7 +1,7 @@
 /**
  * Macaco
- * Copyright (c) 2009-2017 Marco Zanon <info@marcozanon.com>.
- * Released under MIT license (see LICENSE for details).
+ * Copyright (c) 2009-2018 Marco Zanon <info@marcozanon.com>.
+ * See LICENSE for details.
  */
 
 package com.marcozanon.macaco.database;
index da8697b5b21ec41df00c00fc236600d890f45645..a6d5001ecb15313d2b5a2461426f14d3cbb0ec77 100644 (file)
@@ -1,7 +1,7 @@
 /**
  * Macaco
- * Copyright (c) 2009-2017 Marco Zanon <info@marcozanon.com>.
- * Released under MIT license (see LICENSE for details).
+ * Copyright (c) 2009-2018 Marco Zanon <info@marcozanon.com>.
+ * See LICENSE for details.
  */
 
 package com.marcozanon.macaco.database;
index 4ff7e8f0313cb07768712dc7de01314d03c803bb..0fa300dc07a044c8514f2974a1894f692fbaab93 100644 (file)
@@ -1,7 +1,7 @@
 /**
  * Macaco
- * Copyright (c) 2009-2017 Marco Zanon <info@marcozanon.com>.
- * Released under MIT license (see LICENSE for details).
+ * Copyright (c) 2009-2018 Marco Zanon <info@marcozanon.com>.
+ * See LICENSE for details.
  */
 
 package com.marcozanon.macaco.database;
index 2667dfbac823196682b27cdeae9fe70b639d834d..dc99401d6506cde955e1dc2280fe6db4de006364 100644 (file)
@@ -1,7 +1,7 @@
 /**
  * Macaco
- * Copyright (c) 2009-2017 Marco Zanon <info@marcozanon.com>.
- * Released under MIT license (see LICENSE for details).
+ * Copyright (c) 2009-2018 Marco Zanon <info@marcozanon.com>.
+ * See LICENSE for details.
  */
 
 package com.marcozanon.macaco.database;
index 2a3b88370c3b0c847e8727a1eb9bd0b5507fd9ce..40d50030aa6d5c567789d2a656252b9fd0119f7c 100644 (file)
@@ -1,7 +1,7 @@
 /**
  * Macaco
- * Copyright (c) 2009-2017 Marco Zanon <info@marcozanon.com>.
- * Released under MIT license (see LICENSE for details).
+ * Copyright (c) 2009-2018 Marco Zanon <info@marcozanon.com>.
+ * See LICENSE for details.
  */
 
 package com.marcozanon.macaco.database;
index f6a7dd00330429e5cc68df99214d34da61e04ee7..f471bbca80dfcd662eacd7dc5dfbf7335358e09e 100644 (file)
@@ -1,7 +1,7 @@
 /**
  * Macaco
- * Copyright (c) 2009-2017 Marco Zanon <info@marcozanon.com>.
- * Released under MIT license (see LICENSE for details).
+ * Copyright (c) 2009-2018 Marco Zanon <info@marcozanon.com>.
+ * See LICENSE for details.
  */
 
 package com.marcozanon.macaco.json;
index 53d502418192ae6e6a7bafe93994004fdafcb900..8b82408fa8dc573214a0e0fcbc982e7b7ae04066 100644 (file)
@@ -1,7 +1,7 @@
 /**
  * Macaco
- * Copyright (c) 2009-2017 Marco Zanon <info@marcozanon.com>.
- * Released under MIT license (see LICENSE for details).
+ * Copyright (c) 2009-2018 Marco Zanon <info@marcozanon.com>.
+ * See LICENSE for details.
  */
 
 package com.marcozanon.macaco.json;
index 8ff84a5fa64dd50b9e2ae43f068452a1af3f3a6a..fa54fdd575c7d525a5ec1ab36d2127e6bac71d4f 100644 (file)
@@ -1,7 +1,7 @@
 /**
  * Macaco
- * Copyright (c) 2009-2017 Marco Zanon <info@marcozanon.com>.
- * Released under MIT license (see LICENSE for details).
+ * Copyright (c) 2009-2018 Marco Zanon <info@marcozanon.com>.
+ * See LICENSE for details.
  */
 
 package com.marcozanon.macaco.json;
index 3006efdf160ebaab9d1dbe283812e6fec3f60e89..eecff5f0889d92eceeb20629e7e069be146d8106 100644 (file)
@@ -1,7 +1,7 @@
 /**
  * Macaco
- * Copyright (c) 2009-2017 Marco Zanon <info@marcozanon.com>.
- * Released under MIT license (see LICENSE for details).
+ * Copyright (c) 2009-2018 Marco Zanon <info@marcozanon.com>.
+ * See LICENSE for details.
  */
 
 package com.marcozanon.macaco.json;
index ceb9bc276fef0d3607b65f26e17a0bf33e5a7e29..6a327aaa6c43a1dd27c2ad35395a6dc6602aa6bc 100644 (file)
@@ -1,7 +1,7 @@
 /**
  * Macaco
- * Copyright (c) 2009-2017 Marco Zanon <info@marcozanon.com>.
- * Released under MIT license (see LICENSE for details).
+ * Copyright (c) 2009-2018 Marco Zanon <info@marcozanon.com>.
+ * See LICENSE for details.
  */
 
 package com.marcozanon.macaco.json;
index 4aaa6cf54a661b2f36457b4f46d8a7b14627f4ff..e71555f38c65db43e8cdfbf03e0eaf5babac68b9 100644 (file)
@@ -1,7 +1,7 @@
 /**
  * Macaco
- * Copyright (c) 2009-2017 Marco Zanon <info@marcozanon.com>.
- * Released under MIT license (see LICENSE for details).
+ * Copyright (c) 2009-2018 Marco Zanon <info@marcozanon.com>.
+ * See LICENSE for details.
  */
 
 package com.marcozanon.macaco.json;
index 73ecce7d795b0555a3f0ea1f9708fbc1598e0b05..56f01b5804f2ab49e47eeb5c9b65db1a7e8b68fa 100644 (file)
@@ -1,7 +1,7 @@
 /**
  * Macaco
- * Copyright (c) 2009-2017 Marco Zanon <info@marcozanon.com>.
- * Released under MIT license (see LICENSE for details).
+ * Copyright (c) 2009-2018 Marco Zanon <info@marcozanon.com>.
+ * See LICENSE for details.
  */
 
 package com.marcozanon.macaco.json;
index 2113449277d15f09329e261d4ba5d1bf455f90c3..4e2dc16bd603a5fb92704133c094d2243b356e99 100644 (file)
@@ -1,7 +1,7 @@
 /**
  * Macaco
- * Copyright (c) 2009-2017 Marco Zanon <info@marcozanon.com>.
- * Released under MIT license (see LICENSE for details).
+ * Copyright (c) 2009-2018 Marco Zanon <info@marcozanon.com>.
+ * See LICENSE for details.
  */
 
 package com.marcozanon.macaco.json;
index 603eb7878c91069d3fc40cc7ffc930100d7ac3dc..4a49192c7d7b73c48e3f312f6842f89de56a4f57 100644 (file)
@@ -1,7 +1,7 @@
 /**
  * Macaco
- * Copyright (c) 2009-2017 Marco Zanon <info@marcozanon.com>.
- * Released under MIT license (see LICENSE for details).
+ * Copyright (c) 2009-2018 Marco Zanon <info@marcozanon.com>.
+ * See LICENSE for details.
  */
 
 package com.marcozanon.macaco.json;
index 0309b94b14dc72b93f75434ffae78f4b47796c24..af384295dd6920af18caaaabd5a983cedb9e72fb 100644 (file)
@@ -1,7 +1,7 @@
 /**
  * Macaco
- * Copyright (c) 2009-2017 Marco Zanon <info@marcozanon.com>.
- * Released under MIT license (see LICENSE for details).
+ * Copyright (c) 2009-2018 Marco Zanon <info@marcozanon.com>.
+ * See LICENSE for details.
  */
 
 package com.marcozanon.macaco.logging;
index de2e6025e9fab6d7b78c90e1ca09537b12329853..bec0a0ad619a3c8279219320736ddba77673b01b 100644 (file)
@@ -1,7 +1,7 @@
 /**
  * Macaco
- * Copyright (c) 2009-2017 Marco Zanon <info@marcozanon.com>.
- * Released under MIT license (see LICENSE for details).
+ * Copyright (c) 2009-2018 Marco Zanon <info@marcozanon.com>.
+ * See LICENSE for details.
  */
 
 package com.marcozanon.macaco.logging;
index bb03c1545dc1720ff48a833d19bb0bfba89788c4..ce730fe21a62e0ae26eaf2bc1fefe564d89a782e 100644 (file)
@@ -1,7 +1,7 @@
 /**
  * Macaco
- * Copyright (c) 2009-2017 Marco Zanon <info@marcozanon.com>.
- * Released under MIT license (see LICENSE for details).
+ * Copyright (c) 2009-2018 Marco Zanon <info@marcozanon.com>.
+ * See LICENSE for details.
  */
 
 package com.marcozanon.macaco.logging;
index 929bd7d7b6d53e686f43cc38f259c86895a9e29a..d96fb86a4c1831ce18fa05561429820119b67630 100644 (file)
@@ -1,7 +1,7 @@
 /**
  * Macaco
- * Copyright (c) 2009-2017 Marco Zanon <info@marcozanon.com>.
- * Released under MIT license (see LICENSE for details).
+ * Copyright (c) 2009-2018 Marco Zanon <info@marcozanon.com>.
+ * See LICENSE for details.
  */
 
 package com.marcozanon.macaco.logging;
index 8b671c567463364d63f43a2ab00ce4c7dfa7d6bc..5f286d5936032a7ec44621429af204b901caff66 100644 (file)
@@ -1,7 +1,7 @@
 /**
  * Macaco
- * Copyright (c) 2009-2017 Marco Zanon <info@marcozanon.com>.
- * Released under MIT license (see LICENSE for details).
+ * Copyright (c) 2009-2018 Marco Zanon <info@marcozanon.com>.
+ * See LICENSE for details.
  */
 
 package com.marcozanon.macaco.logging;
index 077c0ff43df06ebdc51f6a55ffbf8e96bf04d9cc..3bd51b8e23a7a3ff329da65390c79fc51f2bd6f5 100644 (file)
@@ -1,7 +1,7 @@
 /**
  * Macaco
- * Copyright (c) 2009-2017 Marco Zanon <info@marcozanon.com>.
- * Released under MIT license (see LICENSE for details).
+ * Copyright (c) 2009-2018 Marco Zanon <info@marcozanon.com>.
+ * See LICENSE for details.
  */
 
 package com.marcozanon.macaco.logging;
index 129511e119ab30ec990505e1cc176400fa21df11..c6756c4aba35137a032dca9b834a46e9317240e6 100644 (file)
@@ -1,7 +1,7 @@
 /**
  * Macaco
- * Copyright (c) 2009-2017 Marco Zanon <info@marcozanon.com>.
- * Released under MIT license (see LICENSE for details).
+ * Copyright (c) 2009-2018 Marco Zanon <info@marcozanon.com>.
+ * See LICENSE for details.
  */
 
 package com.marcozanon.macaco.logging;
index e300e89a6cd70a5625dc2c8568422dba3bffeb2c..b3b24d41fac5da8fb8bce57cb19c8540f0b17b01 100644 (file)
@@ -1,7 +1,7 @@
 /**
  * Macaco
- * Copyright (c) 2009-2017 Marco Zanon <info@marcozanon.com>.
- * Released under MIT license (see LICENSE for details).
+ * Copyright (c) 2009-2018 Marco Zanon <info@marcozanon.com>.
+ * See LICENSE for details.
  */
 
 package com.marcozanon.macaco.text;
index fd52ce1b06a15c073c203c8407270999d5f6916d..70ff746fede7bbaf394e8c78de4f2378202b573a 100644 (file)
@@ -1,7 +1,7 @@
 /**
  * Macaco
- * Copyright (c) 2009-2017 Marco Zanon <info@marcozanon.com>.
- * Released under MIT license (see LICENSE for details).
+ * Copyright (c) 2009-2018 Marco Zanon <info@marcozanon.com>.
+ * See LICENSE for details.
  */
 
 package com.marcozanon.macaco.text;
index f507402db532488c0103ad3fc806bb68a4c78d97..270ca57e648da5f0d3af172ba58e72902dc173dd 100644 (file)
@@ -1,7 +1,7 @@
 /**
  * Macaco
- * Copyright (c) 2009-2017 Marco Zanon <info@marcozanon.com>.
- * Released under MIT license (see LICENSE for details).
+ * Copyright (c) 2009-2018 Marco Zanon <info@marcozanon.com>.
+ * See LICENSE for details.
  */
 
 package com.marcozanon.macaco.text;
index f071e2c214b1d809e08acab515a24297bf848461..f7d7ab3a0ab6453112f2687ed6d44d56ef3d0de0 100644 (file)
@@ -1,7 +1,7 @@
 /**
  * Macaco
- * Copyright (c) 2009-2017 Marco Zanon <info@marcozanon.com>.
- * Released under MIT license (see LICENSE for details).
+ * Copyright (c) 2009-2018 Marco Zanon <info@marcozanon.com>.
+ * See LICENSE for details.
  */
 
 package com.marcozanon.macaco.text;
index 75b9b04a1eae8de4998217d31f200525b66c949a..3b5eb63335066d22349d37bb9352b1f046afe7eb 100644 (file)
@@ -1,7 +1,7 @@
 /**
  * Macaco
- * Copyright (c) 2009-2017 Marco Zanon <info@marcozanon.com>.
- * Released under MIT license (see LICENSE for details).
+ * Copyright (c) 2009-2018 Marco Zanon <info@marcozanon.com>.
+ * See LICENSE for details.
  */
 
 package com.marcozanon.macaco.text;
index 72fc9cc099fb5db1a11a333680307a2f5cf65eb5..d93dc2bb77006741738b862a8f9bc73b7761bf57 100644 (file)
@@ -1,7 +1,7 @@
 /**
  * Macaco
- * Copyright (c) 2009-2017 Marco Zanon <info@marcozanon.com>.
- * Released under MIT license (see LICENSE for details).
+ * Copyright (c) 2009-2018 Marco Zanon <info@marcozanon.com>.
+ * See LICENSE for details.
  */
 
 package com.marcozanon.macaco.text;
index 6a0d8f0b2bada66227ec78615f735cef3fe84b78..28de5eb4a874bffbd19641208d2e59055a6adfaa 100644 (file)
@@ -1,7 +1,7 @@
 /**
  * Macaco
- * Copyright (c) 2009-2017 Marco Zanon <info@marcozanon.com>.
- * Released under MIT license (see LICENSE for details).
+ * Copyright (c) 2009-2018 Marco Zanon <info@marcozanon.com>.
+ * See LICENSE for details.
  */
 
 package com.marcozanon.macaco.text;