]> source.dussan.org Git - pf4j.git/commitdiff
License header update, #171 (#205)
authorBala Raman <srbala@gmail.com>
Mon, 26 Mar 2018 21:13:08 +0000 (17:13 -0400)
committerDecebal Suiu <decebal.suiu@gmail.com>
Mon, 26 Mar 2018 21:13:08 +0000 (00:13 +0300)
102 files changed:
demo/api/src/main/java/org/pf4j/demo/api/Greeting.java
demo/app/src/main/java/org/pf4j/demo/Boot.java
demo/app/src/main/java/org/pf4j/demo/HowdyGreeting.java
demo/app/src/main/java/org/pf4j/demo/WhazzupGreeting.java
demo/plugins/plugin1/src/main/java/org/pf4j/demo/welcome/WelcomePlugin.java
demo/plugins/plugin2/src/main/java/org/pf4j/demo/hello/HelloPlugin.java
demo_gradle/api/src/main/java/org/pf4j/demo/api/Greeting.java
demo_gradle/app/src/main/java/org/pf4j/demo/Boot.java
demo_gradle/app/src/main/java/org/pf4j/demo/WhazzupGreeting.java
demo_gradle/plugins/plugin1/src/main/java/org/pf4j/demo/welcome/WelcomePlugin.java
demo_gradle/plugins/plugin2/src/main/java/org/pf4j/demo/hello/HelloPlugin.java
pf4j/src/main/java/org/pf4j/AbstractExtensionFinder.java
pf4j/src/main/java/org/pf4j/AbstractPluginManager.java
pf4j/src/main/java/org/pf4j/BasePluginRepository.java
pf4j/src/main/java/org/pf4j/CompoundPluginDescriptorFinder.java
pf4j/src/main/java/org/pf4j/CompoundPluginLoader.java
pf4j/src/main/java/org/pf4j/CompoundPluginRepository.java
pf4j/src/main/java/org/pf4j/DefaultExtensionFactory.java
pf4j/src/main/java/org/pf4j/DefaultExtensionFinder.java
pf4j/src/main/java/org/pf4j/DefaultPluginClasspath.java
pf4j/src/main/java/org/pf4j/DefaultPluginDescriptor.java
pf4j/src/main/java/org/pf4j/DefaultPluginFactory.java
pf4j/src/main/java/org/pf4j/DefaultPluginLoader.java
pf4j/src/main/java/org/pf4j/DefaultPluginManager.java
pf4j/src/main/java/org/pf4j/DefaultPluginRepository.java
pf4j/src/main/java/org/pf4j/DefaultPluginStatusProvider.java
pf4j/src/main/java/org/pf4j/DefaultVersionManager.java
pf4j/src/main/java/org/pf4j/DependencyResolver.java
pf4j/src/main/java/org/pf4j/DevelopmentPluginClasspath.java
pf4j/src/main/java/org/pf4j/Extension.java
pf4j/src/main/java/org/pf4j/ExtensionDescriptor.java
pf4j/src/main/java/org/pf4j/ExtensionFactory.java
pf4j/src/main/java/org/pf4j/ExtensionFinder.java
pf4j/src/main/java/org/pf4j/ExtensionPoint.java
pf4j/src/main/java/org/pf4j/ExtensionWrapper.java
pf4j/src/main/java/org/pf4j/JarPluginLoader.java
pf4j/src/main/java/org/pf4j/JarPluginRepository.java
pf4j/src/main/java/org/pf4j/LegacyExtensionFinder.java
pf4j/src/main/java/org/pf4j/LoggingPluginStateListener.java
pf4j/src/main/java/org/pf4j/ManifestPluginDescriptorFinder.java
pf4j/src/main/java/org/pf4j/Plugin.java
pf4j/src/main/java/org/pf4j/PluginClassLoader.java
pf4j/src/main/java/org/pf4j/PluginClasspath.java
pf4j/src/main/java/org/pf4j/PluginDependency.java
pf4j/src/main/java/org/pf4j/PluginDescriptor.java
pf4j/src/main/java/org/pf4j/PluginDescriptorFinder.java
pf4j/src/main/java/org/pf4j/PluginException.java
pf4j/src/main/java/org/pf4j/PluginFactory.java
pf4j/src/main/java/org/pf4j/PluginLoader.java
pf4j/src/main/java/org/pf4j/PluginManager.java
pf4j/src/main/java/org/pf4j/PluginRepository.java
pf4j/src/main/java/org/pf4j/PluginState.java
pf4j/src/main/java/org/pf4j/PluginStateEvent.java
pf4j/src/main/java/org/pf4j/PluginStateListener.java
pf4j/src/main/java/org/pf4j/PluginStatusProvider.java
pf4j/src/main/java/org/pf4j/PluginWrapper.java
pf4j/src/main/java/org/pf4j/PropertiesPluginDescriptorFinder.java
pf4j/src/main/java/org/pf4j/RuntimeMode.java
pf4j/src/main/java/org/pf4j/ServiceProviderExtensionFinder.java
pf4j/src/main/java/org/pf4j/VersionManager.java
pf4j/src/main/java/org/pf4j/processor/ExtensionAnnotationProcessor.java
pf4j/src/main/java/org/pf4j/processor/ExtensionStorage.java
pf4j/src/main/java/org/pf4j/processor/LegacyExtensionStorage.java
pf4j/src/main/java/org/pf4j/processor/ServiceProviderExtensionStorage.java
pf4j/src/main/java/org/pf4j/util/AndFileFilter.java
pf4j/src/main/java/org/pf4j/util/ClassUtils.java
pf4j/src/main/java/org/pf4j/util/DirectedGraph.java
pf4j/src/main/java/org/pf4j/util/DirectoryFileFilter.java
pf4j/src/main/java/org/pf4j/util/ExtensionFileFilter.java
pf4j/src/main/java/org/pf4j/util/FileUtils.java
pf4j/src/main/java/org/pf4j/util/HiddenFilter.java
pf4j/src/main/java/org/pf4j/util/JarFileFilter.java
pf4j/src/main/java/org/pf4j/util/NameFileFilter.java
pf4j/src/main/java/org/pf4j/util/NotFileFilter.java
pf4j/src/main/java/org/pf4j/util/OrFileFilter.java
pf4j/src/main/java/org/pf4j/util/StringUtils.java
pf4j/src/main/java/org/pf4j/util/Unzip.java
pf4j/src/main/java/org/pf4j/util/ZipFileFilter.java
pf4j/src/test/java/org/pf4j/AbstractExtensionFinderTest.java
pf4j/src/test/java/org/pf4j/CompoundPluginDescriptorFinderTest.java
pf4j/src/test/java/org/pf4j/DefaultExtensionFactoryTest.java
pf4j/src/test/java/org/pf4j/DefaultPluginFactoryTest.java
pf4j/src/test/java/org/pf4j/DefaultPluginManagerTest.java
pf4j/src/test/java/org/pf4j/DefaultPluginRepositoryTest.java
pf4j/src/test/java/org/pf4j/DefaultPluginStatusProviderTest.java
pf4j/src/test/java/org/pf4j/DefaultVersionManagerTest.java
pf4j/src/test/java/org/pf4j/DependencyResolverTest.java
pf4j/src/test/java/org/pf4j/ExtensionAnnotationProcessorTest.java
pf4j/src/test/java/org/pf4j/LegacyExtensionStorageTest.java
pf4j/src/test/java/org/pf4j/LoadPluginsTest.java
pf4j/src/test/java/org/pf4j/ManifestPluginDescriptorFinderTest.java
pf4j/src/test/java/org/pf4j/PluginDependencyTest.java
pf4j/src/test/java/org/pf4j/PropertiesPluginDescriptorFinderTest.java
pf4j/src/test/java/org/pf4j/plugin/AnotherFailTestPlugin.java
pf4j/src/test/java/org/pf4j/plugin/FailTestExtension.java
pf4j/src/test/java/org/pf4j/plugin/FailTestPlugin.java
pf4j/src/test/java/org/pf4j/plugin/PluginZip.java
pf4j/src/test/java/org/pf4j/plugin/TestExtension.java
pf4j/src/test/java/org/pf4j/plugin/TestExtensionPoint.java
pf4j/src/test/java/org/pf4j/plugin/TestPlugin.java
pf4j/src/test/java/org/pf4j/processor/ServiceProviderExtensionStorageTest.java
pf4j/src/test/java/org/pf4j/util/FileUtilsTest.java

index 1e4a7677c6137ecbddb3e8e0a9e2dac82fabdcfd..828d61bc619ac4fe0a4af6e0ddfab2269a919732 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2012 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index a4e32dd8920cf4ecb03c4f16b94c8b475d98a7a8..7892d9e302c20c549728f7cbd5bfd4ca562a26c0 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2012 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 51888b80d5e784c43992e9ae1ef2aadd673bd539..050934d772345095976e03ba64b801fa5f937573 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2015 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index c742127e0ee2fd962299f854c4fa9e8b60dce55f..1341b77b032e80a1d288b69e2c3a9b3cc162534b 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2014 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 7ea2740f1efc3d2742aab795b639246a5734c032..1106048c8e3bdc19f8398b11c8328e8ceea309bf 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2012 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index c6f1e52ab3efa8a85b1941f2a7350dec7582ab28..d801177f4f6410f58f35596d920cba3b7072f368 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2012 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 1e4a7677c6137ecbddb3e8e0a9e2dac82fabdcfd..828d61bc619ac4fe0a4af6e0ddfab2269a919732 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2012 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 9343f4af8ee8581b4c3ea7bfe5b665d656f491dc..cbf6007a624bf38d785b14889fd0a50ad4bef8ec 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2012 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index c742127e0ee2fd962299f854c4fa9e8b60dce55f..1341b77b032e80a1d288b69e2c3a9b3cc162534b 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2014 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 040c9fdef3f3aea90b8cd693121e53641442aeb8..65f4d281def560867fe35b75357699e01e2c303e 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2012 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index f8e83d3b6b2485c32339b4460e81fd97c754d90c..d3af22987047e28fff3e945c1a4a6c9203b1a633 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2012 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 7aa64ca07a3898335be2fa337b64da4526c58372..1f3851ec8049d022d49ec178903a9e097531b634 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2015 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 57f1c86ca287fa9d64bddca5ef01e6a13fa2b7b5..4ba143893b594c2d75cdc600a696cf49fca1e7cb 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2016 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index c5d5281692a7879960f01535ea8f7bde1d7fe57e..0745b5765783082d693c43f03d80a9eae4203a89 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2012 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index e8c8318237dd34e0ea99d82ecafce69dffd762c5..d8f03a765ff56448c894431eb4f3994dbf4903dc 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2017 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index b5c2fadfd195d505a83289bf215c3d8f7c6b5457..fe10d680758996ce9c0937a3b4d9ffaeaeb8faa6 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2017 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 2bc12574c56c43c77363b7eb94320d5e91e6375b..09bc5ce0e3d6a229e652c58d42f9d2314bf88ee5 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2012 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 7a2683b4d2a6a07ded7b98fbf91607fd5cf6efae..a8c1fd1c26af1088b5bdceb389aaf4ccbca3040f 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2014 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index ea2bfd784564b5223cfa588acbb3c940597c2e0e..217bd597413e5a81ba2af9380a0a7b50d19d4b50 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2013 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index c62f223ca809f83cdec3ca398fe5d11a3094be77..a78bfd3cd93e7be7591acae8c0b6760f2cef6f17 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2016 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 4d81a8d7ea7725923d751121a12e1ffef9cfbb39..b899a171a0fe722b55e48c125f3292dc94898ab5 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2012 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 93b0a19d5f6c8b3b4fd24c8a632d5b95bff9abcc..20bce20feb2bb9cef8dd59d08ea25a13f330c1bb 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2014 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 71e35904cca8a419a1bb5f944f49c1d0c55541ce..60d63be32ebfc76b50e4e6ae954548560c824187 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2016 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 9aee69bae91b9b20c8cf6438f5044ad318af8f2a..2cc89b3781af7b43d238570b672ff10e423219b6 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2012 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index a97313fe482bc2c48b2c738d15e058c8425f373b..e3dd4d03afd9918c9d52d922b7abe0f8318f8957 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2012 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 08c4607533875ed9d0c2283e5d65f42d31712e9c..bda50c6a739f432e5111cac6e7f61c44b916dd55 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2014 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 5ce6135a7d319c12afbf200c3ce49ccf9e560b65..8c60d085d5018e535ac606c147da502392d680fb 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2017 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 215a4331b5f631f9893e22e71bd8062c3e290325..7f367285d17a7f3e01b4c5720309553e46d3ac23 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2012 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index ba22e56f03f6a09aa92f9790a33978dbe3b5fe67..ba86bf5617c65fced7992d9b53ed13c864001863 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2013 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 69a20496cc9a730871de09b5a577f3046cf5ac0e..87639a67fbe57b9186483039c077a2c9bf4594d6 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2012 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 489404615e88ddcd4ca5e72844fc55fde28047dd..0c27bf459105657b5007493a4a77ae81a4b2136b 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2014 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 27ab5cc0e6a988c72c5d959a467391bf2f76bc4f..177d489c13e6d895bb974ffb771c23d9dd4b9eb6 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2014 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 146f040b8652300e2d74d21c0e1d534eb6b15e98..c905364ccd516773cd7a02986b369f1229ca9b09 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2012 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 3e64e72d6e805df221d4302f23754787d0fef3c2..262fece8ed923a1f17a5b04a6fdf011ed80ae978 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2012 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 22a2c53a95f2621d3ad004191ff33fc8d7fa3ebb..55a6aab6fc0f3ab9353b75c64edd5219fe490c7c 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2014 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 113b244c1e0ab7ec837f262e6863f605a3ab3171..40a6a492601968aaafe79d7e1c8afe053051b045 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2017 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index e98c286695982277cb7823f86d315143ea40dea3..a8be3ffb02887731982ea6c21aca7b3c1150b6ce 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2016 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index da5188938729f9a3fd27ef40246008748e311a22..55b824fce4dc527f760d00865067482626075f05 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2013 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 2589d5be7f00e832cecea1e3b248518e0cd11270..a048e567d96015e5975a9b24477529dd64d8a072 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2018 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index d6ef17f31fc1767e8e2cb7bfd4e751844c557a84..951e24648451ac3978198810822cea156a7df657 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2012 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index cfaa3435e78b9a1e2fd06ac3a4367a9d63e7a5b2..6233b44c2a494ec1d402484c179417c15b9f4f37 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2012 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 6863c3dbd562b8b53baa42e16b1a1b9846ca0112..644d676f9c0d337b58720992c2c2293ac0895280 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2012 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 06b9ec550ddd2f74b5e277496a6749293f48a3e5..2a6f2cc1478dbb10ec69d54674ad3be2815a5a20 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2013 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index fa2f280c65e572232566c5747d4e2a7874ab9d34..59d11bc7b027c5627dda4d54ab1b70b304adf26b 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2012 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 75bacfcd6be92a35ebcdb2e0248277d8f7fd67e3..3b92effea9ec2559609bc7c7c081622b6a5926d2 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2015 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 73fc560e83e18ed29ee9134f716e5e7354d3109f..8d4081397a427880c34cf7599aa236c7c61479cf 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2012 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 4a57af40e710019e8ff05b468d932b5465481caf..0d1e8e249bf73711b9f804c96c32893cde21f88c 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2012 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 4909ade4cdb45c5fb6123a8c0393ec4cb6ceea67..2eeb6e713fa041e29a18a1b8e1afe2228b0317c0 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2014 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index fc20b2267822cbc09630cb6e6cda0359c45d4cb2..ee98109c805794173c66e2f1a335c0ad9dba35c8 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2012 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 25238702ec822d31762efc04b068d091de6b4f8b..52285d77e2c5ab886f502779065cf400b67bf539 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2012 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index de1347d3c8b3e0a889641bab2a7218dfa44ecdfc..f3617cda4d8049424fd1acc915957448293c0a8d 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2012 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index def9136c0a70b75eb369ac7528752a88b4922ff2..195e12142633fa49d25a86f2eb33e69fc576a3b4 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2012 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 361fd3f619637d5302a46344d8a3ed6a199a4b67..8a3b9afcdf5ebff0bcc6a254a7f78b28a18a5a3b 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2014 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 5312b1ba386e165ae6ed8a04393191474cac4bc7..ba65860dbf0877fbe09a5a2e3a673ed32977208c 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2014 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 07d5f439d575d5c92bfaaa54e0139dd598b647d6..a9e447df9fb3d877fbf9e4c0fbead0b57a1e6af5 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2012 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 5ed641f16bcbded063500e52a1b1e3accbe559c0..c5d3383fd80926952ff1d6b90a9f688013221dcf 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2012 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index cedb4aae407b31b93e43b65150337a28a6676b71..462f9989ff7878dd0779280675c823af9458243c 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2012 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index f4bec88891638bef8127e8668bd5d6576d788f93..0ab8abedd3f6914e0b0cc327caf12f730a61721a 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2013 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 3955c805173ea74ba1cacf63b5280295cfedf906..a1c48b6a840859bac16603171749bfadcf0b719f 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2015 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 855afeae2287773d81e505304a4d4613d13d95fd..5caf9e21e191206f0015e35c36f40c3eba5a2ac2 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2017 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 30c604cd65101f76395fbfd0580c5127f0d36225..5e6909055a4358aa3e08b4e3080ab511f5ccd134 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2013 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 55394b7ba8181ccec2ab9b5a65c50b8d579e6d63..5088068eba604791ec8773c8e6adcc4f4bcd725d 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2015 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 9adfd66c262d3a7413b3a528b6adfd12e9e8d77e..3f9c61b808065dd590d76663a7795bea9b5f2646 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2015 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 65c9a2cd97c78d25b86e49c30e692a0401f8552b..b087a4e4b8ff0457e4861fe94c4b7e837a7a8670 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2015 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 0add9f48773926d941db718bc39e94b489f92354..cc74da4422717290eb326673c43dcf25791f1474 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2013 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index ca2632dcaecae50db921cef9e3e192dfe6aee88e..b85d54a91c35a6d91e79e6cf17f834f8e3d32ab0 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2016 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index bc2b8fb2eeb329eeb7047aac8656455a0550d91a..619043f1bf5fd47a2f44526beedf2727154b2d65 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2012 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index fab20fa8bbdee98c14d5cf2ae8eab7e0ca068bcc..d86dad453ed23efb9877ebcac2b402802fdd311f 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2012 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index a8636fc5e2203b0e17c974aa400d00c2b08c3d7d..c97cb61808af9ec5ceadf34a1abbc5b84cb9b69f 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2012 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 0d32ee7049a630be41e27d08418991327f145caa..fa2eb4dd2109f8a79168cda3fa8cd8d1ea094351 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2012 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 649e8e0bff4f047a89f5b23e0a7a6d1408a2495f..ef9a56e57419f4d8b2314389d44e8ea31b9fe757 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2013 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index f0158507c87e93032e8308b9d6dd545decde927a..ad8835bf07416d2a5be9933beecea60678030ad6 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2012 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index c11435272b5299586d285b2d6f007bfc37b9c2e0..3a1a53fa672aad507c47d77f5440d1a261e41071 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2015 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 06f6140b3df19d57fadbcab84e5e7e247c9d6950..fabb312bcef59f79ba5176f9fcadcbac102ad163 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2013 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 8bf3f24b3c2cf1f54860c6bc524c4c11d6c5311d..fccfb7bb5ea9419ba9f4db2298e616c97aecc1e8 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2013 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 04fc4ec6d7416ffcfd258db0bf86a6de0671c692..6d03d536372c2db844ef8f88087b43881e008265 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2012 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 5d0c34afd536ecb1031b565080d814f262942266..157218743d4be8b26419d064b0f27a4d96e07735 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2012 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index d4748e6aca3976c1767bd1e158fd00d44a08dea2..0e8a566d81da6a6878a9326fbaef27bca67fbb87 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2012 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 9e1c40e03e392d37f38c148383a4dc863d74a307..2acabeea635b4e6b100fc88f2daea4adcb45081d 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2015 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 27b4d72539409688efdc6e5eda4eb6a98e897377..6cb876c324df97b72dfb880397b687facfdc31f2 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2017 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 01822d07bba4d4b5ded9f41316c079f993cd82d3..71ffa9382d574965106bb9f08d28a4bf95823172 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2015 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 57353285a850ddb83bf501f5198be85e42ee9e13..6124a79e71304d4e8b86df779d2e002a0fb0ba23 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2015 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index c9b55fb92b8d634da29578cef2a1ab5d4ca14dc9..163a28c23dff8123ccc61db71defe3e5b32d1da0 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2015 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index b66b3b5104cb90855dff5fe459698c087dd45abb..be77114895fab0cf61b06872a2e63e8a4ba12ee1 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2015 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index da2752e2e7ba97db61ce172e5df3b2ff6e0adf81..c0ab38e82e3d2f7088a42e2f2b8e1e7afc3312b1 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2015 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 68a75a88ce3d5d69ceddb74189af430b017f2679..795d3cf1d1851838bf09973a7bda9527b4ed4725 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2017 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index dcd251553e2b42aa3840527db78c733287ae5e6f..8b551d39101b0b51c15b27af067c3841f5ebdd6b 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2017 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index c2e7c0e3e2271907a1c73f56bc1693669bea0c38..9edd6b90592f53c86b53b74a886a1d5eac762bf2 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2017 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 14daa6e94485afab7f14f9f10037c300a9e7e215..57125bdfd96737eeb27df0ec325ff2d9d19aca10 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2017 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 6df995304b2ae19b8b0247a13e0f8a538e4bc755..0c8401bde72b30ee3ba13a71cf6de1be4810e463 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2017 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index c073c88dcc3330025b5c616b144f4ffab15a796f..863b01cf3343a032e769c7591364827d7f303bed 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2015 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index f65ee511ce7d8b20f0529527a5cceba03bccb877..3ca075b5feff8043fcdd3226ed0550627c063035 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2015 Mario Franco.
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index cf36b4f901886cf814585e683d8c05023b00a4b7..c7766203643ba987d19b794557e0e191599cc9bd 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2012 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index a8da002e2c97292c6b4f6f9954b22bf1b1b08f42..b45f343af7760e5024c0dcd8c01f850adb6214ae 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2015 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 2fa6062f6d00f062f0cb2f8018839cb8ba97c2a6..9cc37e065d6ac3ef0a0f2594143d9133d0b54564 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2015 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 5a6a8f32d2b9c11add08d7df2b40ebe7bbb8df0b..fab11c94dfbc081314fab41abc65f0d6585bc888 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2015 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 3b56786cba87933d0dee786f03c74baf45b182b9..f0693659047c92224c97f9dbccbb8a720ee1db56 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2015 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 91343589c94169f105f82cb521700e68f30fa1c6..5f48c9aacaa3231040b77b4b87a65a9b6d61df21 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2015 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index f8a1a64ecd761c1f8de6ed508208db2bd074dbaf..a33ac402cc42f97925653d87b568e27af7b49daa 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2015 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 361bd871a4287b1d8bb4f3863ba61afeb4086309..f09480805167e7e446e569b4fb684f59496b0c7a 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2015 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index a2ffc6740ab581c67aa5cfc65c60d4648544a515..2c450a0f9d9d4d6b2e3fd944baec09a1fc4f847c 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2015 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 38f923870c57f23505a3f93ae319643a184ac944..76d0c2ec7d36f8e67faaca65e41a6be1af1466aa 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2017 Decebal Suiu
+ * Copyright (C) 2012-present the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.