📄 Update filenames in file headers
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Sun, 9 Feb 2020 11:12:14 +0000 (12:12 +0100)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Sun, 9 Feb 2020 11:12:14 +0000 (12:12 +0100)
36 files changed:
src/main/java/net/pterodactylus/sone/freenet/wot/IdentityChangeDetector.kt
src/main/kotlin/net/pterodactylus/sone/core/UpdateChecker.kt
src/main/kotlin/net/pterodactylus/sone/freenet/L10nFilter.kt
src/main/kotlin/net/pterodactylus/sone/freenet/plugin/PluginException.kt
src/main/kotlin/net/pterodactylus/sone/freenet/wot/Context.kt
src/main/kotlin/net/pterodactylus/sone/freenet/wot/DefaultIdentity.kt
src/main/kotlin/net/pterodactylus/sone/freenet/wot/DefaultOwnIdentity.kt
src/main/kotlin/net/pterodactylus/sone/freenet/wot/IdentityChangeEventSender.kt
src/main/kotlin/net/pterodactylus/sone/freenet/wot/IdentityLoader.kt
src/main/kotlin/net/pterodactylus/sone/freenet/wot/IdentityManagerImpl.kt
src/main/kotlin/net/pterodactylus/sone/freenet/wot/PluginWebOfTrustConnector.kt
src/main/kotlin/net/pterodactylus/sone/freenet/wot/Trust.kt
src/main/kotlin/net/pterodactylus/sone/freenet/wot/WebOfTrustException.kt
src/main/kotlin/net/pterodactylus/sone/freenet/wot/event/IdentityAddedEvent.kt
src/main/kotlin/net/pterodactylus/sone/freenet/wot/event/IdentityRemovedEvent.kt
src/main/kotlin/net/pterodactylus/sone/freenet/wot/event/IdentityUpdatedEvent.kt
src/main/kotlin/net/pterodactylus/sone/freenet/wot/event/OwnIdentityAddedEvent.kt
src/main/kotlin/net/pterodactylus/sone/freenet/wot/event/OwnIdentityRemovedEvent.kt
src/main/kotlin/net/pterodactylus/sone/notify/ListNotification.kt
src/main/kotlin/net/pterodactylus/sone/template/PostAccessor.kt
src/main/kotlin/net/pterodactylus/sone/web/notification/LocalPostHandler.kt
src/main/kotlin/net/pterodactylus/sone/web/notification/MarkPostReplyKnownDuringFirstStartHandler.kt
src/main/kotlin/net/pterodactylus/sone/web/notification/NotificationHandlerModule.kt
src/main/kotlin/net/pterodactylus/sone/web/notification/SoneLockedOnStartupHandler.kt
src/test/kotlin/net/pterodactylus/sone/freenet/wot/DefaultIdentityTest.kt
src/test/kotlin/net/pterodactylus/sone/freenet/wot/DefaultOwnIdentityTest.kt
src/test/kotlin/net/pterodactylus/sone/freenet/wot/Identities.kt
src/test/kotlin/net/pterodactylus/sone/freenet/wot/IdentityChangeDetectorTest.kt
src/test/kotlin/net/pterodactylus/sone/freenet/wot/IdentityChangeEventSenderTest.kt
src/test/kotlin/net/pterodactylus/sone/freenet/wot/IdentityLoaderTest.kt
src/test/kotlin/net/pterodactylus/sone/freenet/wot/WebOfTrustPingerTest.kt
src/test/kotlin/net/pterodactylus/sone/web/notification/ConfigNotReadHandlerTest.kt
src/test/kotlin/net/pterodactylus/sone/web/notification/ImageInsertHandlerTest.kt
src/test/kotlin/net/pterodactylus/sone/web/notification/LocalPostHandlerTest.kt
src/test/kotlin/net/pterodactylus/sone/web/notification/RemotePostReplyHandlerTest.kt
src/test/kotlin/net/pterodactylus/sone/web/notification/SoneLockedOnStartupHandlerTest.kt

index deb35b1..bf300d3 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Sone - IdentityChangeDetector.java - Copyright Â© 2013–2019 David Roden
+ * Sone - IdentityChangeDetector.kt - Copyright Â© 2013–2019 David Roden
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
index 025c7e7..dfb0391 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Sone - UpdateChecker.java - Copyright Â© 2011–2019 David Roden
+ * Sone - UpdateChecker.kt - Copyright Â© 2011–2019 David Roden
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
index b48bfec..65ccbb6 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Sone - L10nFilter.java - Copyright Â© 2010–2019 David Roden
+ * Sone - L10nFilter.kt - Copyright Â© 2010–2019 David Roden
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
index 8515f0c..710acc8 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Sone - PluginException.java - Copyright Â© 2010–2019 David Roden
+ * Sone - PluginException.kt - Copyright Â© 2010–2019 David Roden
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
index 37d7b61..231a415 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Sone - Context.java - Copyright Â© 2014–2019 David Roden
+ * Sone - Context.kt - Copyright Â© 2014–2019 David Roden
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
index fe84584..b56e434 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Sone - DefaultIdentity.java - Copyright Â© 2010–2019 David Roden
+ * Sone - DefaultIdentity.kt - Copyright Â© 2010–2019 David Roden
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
index f330c0a..d897402 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Sone - DefaultOwnIdentity.java - Copyright Â© 2010–2019 David Roden
+ * Sone - DefaultOwnIdentity.kt - Copyright Â© 2010–2019 David Roden
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
index 5ffffa3..f9c9282 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Sone - IdentityChangeEventSender.java - Copyright Â© 2013–2019 David Roden
+ * Sone - IdentityChangeEventSender.kt - Copyright Â© 2013–2019 David Roden
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
index f9019d0..bfd5b1b 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Sone - IdentityLoader.java - Copyright Â© 2013–2019 David Roden
+ * Sone - IdentityLoader.kt - Copyright Â© 2013–2019 David Roden
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
index cb7d0bd..bdf3ed1 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Sone - IdentityManagerImpl.java - Copyright Â© 2010–2019 David Roden
+ * Sone - IdentityManagerImpl.kt - Copyright Â© 2010–2019 David Roden
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
index a8c40a6..eba248a 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Sone - WebOfTrustConnector.java - Copyright Â© 2010–2019 David Roden
+ * Sone - PluginWebOfTrustConnector.kt - Copyright Â© 2010–2019 David Roden
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
index 9242de9..aa6b04e 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Sone - Trust.java - Copyright Â© 2010–2019 David Roden
+ * Sone - Trust.kt - Copyright Â© 2010–2019 David Roden
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
index a3ba9aa..8233f7e 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Sone - WebOfTrustException.java - Copyright Â© 2010–2019 David Roden
+ * Sone - WebOfTrustException.kt - Copyright Â© 2010–2019 David Roden
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
index 9fb2bbf..c276ff2 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Sone - IdentityAddedEvent.java - Copyright Â© 2013–2019 David Roden
+ * Sone - IdentityAddedEvent.kt - Copyright Â© 2013–2019 David Roden
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
index f8c9cd0..6bd4db0 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Sone - IdentityRemovedEvent.java - Copyright Â© 2013–2019 David Roden
+ * Sone - IdentityRemovedEvent.kt - Copyright Â© 2013–2019 David Roden
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
index 40557d3..86d403d 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Sone - IdentityUpdatedEvent.java - Copyright Â© 2013–2019 David Roden
+ * Sone - IdentityUpdatedEvent.kt - Copyright Â© 2013–2019 David Roden
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
index 6f76564..6f61f39 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Sone - OwnIdentityAddedEvent.java - Copyright Â© 2013–2019 David Roden
+ * Sone - OwnIdentityAddedEvent.kt - Copyright Â© 2013–2019 David Roden
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
index 7b0e3fe..a84d97d 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Sone - OwnIdentityRemovedEvent.java - Copyright Â© 2013–2019 David Roden
+ * Sone - OwnIdentityRemovedEvent.kt - Copyright Â© 2013–2019 David Roden
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
index 9ee328e..981f888 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Sone - ListNotification.java - Copyright Â© 2010–2019 David Roden
+ * Sone - ListNotification.kt - Copyright Â© 2010–2019 David Roden
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
index 843e6e3..406a6b0 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Sone - PostAccessor.java - Copyright Â© 2010–2019 David Roden
+ * Sone - PostAccessor.kt - Copyright Â© 2010–2019 David Roden
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -14,6 +14,7 @@
  * You should have received a copy of the GNU General Public License
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
+
 package net.pterodactylus.sone.template
 
 import net.pterodactylus.sone.core.*
index cd78dd0..59f6052 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Sone - NewLocalPostHandler.kt - Copyright Â© 2019 David â€˜Bombe’ Roden
+ * Sone - LocalPostHandler.kt - Copyright Â© 2019 David â€˜Bombe’ Roden
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
index 6a7f083..64285ee 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Sone - MarkPostReplyKnownDuringFirstStartHandlerTest.kt - Copyright Â© 2020 David â€˜Bombe’ Roden
+ * Sone - MarkPostReplyKnownDuringFirstStartHandler.kt - Copyright Â© 2020 David â€˜Bombe’ Roden
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
index bdbbc32..da20daf 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Sone - NotificationHandlerModuleTest.kt - Copyright Â© 2019 David â€˜Bombe’ Roden
+ * Sone - NotificationHandlerModule.kt - Copyright Â© 2019 David â€˜Bombe’ Roden
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
index c6de63f..f968b39 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Sone - SoneLockedOnStartupNotification.kt - Copyright Â© 2019 David â€˜Bombe’ Roden
+ * Sone - SoneLockedOnStartupHandler.kt - Copyright Â© 2019 David â€˜Bombe’ Roden
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
index 2cd7bda..f06de54 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Sone - DefaultIdentityTest.java - Copyright Â© 2013–2019 David Roden
+ * Sone - DefaultIdentityTest.kt - Copyright Â© 2013–2019 David Roden
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
index 593b157..8be5de9 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Sone - DefaultOwnIdentityTest.java - Copyright Â© 2013–2019 David Roden
+ * Sone - DefaultOwnIdentityTest.kt - Copyright Â© 2013–2019 David Roden
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
index 9d74b65..c6c6416 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Sone - Identities.java - Copyright Â© 2013–2019 David Roden
+ * Sone - Identities.kt - Copyright Â© 2013–2019 David Roden
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
index e9f8092..03c7b34 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Sone - IdentityChangeDetectorTest.java - Copyright Â© 2013–2019 David Roden
+ * Sone - IdentityChangeDetectorTest.kt - Copyright Â© 2013–2019 David Roden
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
index 19fdda0..c7bd2c8 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Sone - IdentityChangeEventSenderTest.java - Copyright Â© 2013–2019 David Roden
+ * Sone - IdentityChangeEventSenderTest.kt - Copyright Â© 2013–2019 David Roden
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
index 1202d4c..0e961c7 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Sone - IdentityLoaderTest.java - Copyright Â© 2013–2019 David Roden
+ * Sone - IdentityLoaderTest.kt - Copyright Â© 2013–2019 David Roden
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
index 6d302c5..7ad9c94 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Sone - WebOfTrustPinger.kt - Copyright Â© 2019 David â€˜Bombe’ Roden
+ * Sone - WebOfTrustPingerTest.kt - Copyright Â© 2019 David â€˜Bombe’ Roden
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
index cc02606..19d112a 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Sone - ConfigNotReadHandler.kt - Copyright Â© 2019 David â€˜Bombe’ Roden
+ * Sone - ConfigNotReadHandlerTest.kt - Copyright Â© 2019 David â€˜Bombe’ Roden
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
index 3f570a9..df0a342 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Sone - ImageInsertHandler.kt - Copyright Â© 2019 David â€˜Bombe’ Roden
+ * Sone - ImageInsertHandlerTest.kt - Copyright Â© 2019 David â€˜Bombe’ Roden
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
index 1d97ae8..46098fd 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Sone - NewLocalPostHandlerTest.kt - Copyright Â© 2019 David â€˜Bombe’ Roden
+ * Sone - LocalPostHandlerTest.kt - Copyright Â© 2019 David â€˜Bombe’ Roden
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
index 9c5361c..e4eb14f 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Sone - RemotePostReplyHandler.kt - Copyright Â© 2020 David â€˜Bombe’ Roden
+ * Sone - RemotePostReplyHandlerTest.kt - Copyright Â© 2020 David â€˜Bombe’ Roden
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
index 36a8836..3ace25e 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Sone - SoneLockedOnStartupNotificationTest.kt - Copyright Â© 2019 David â€˜Bombe’ Roden
+ * Sone - SoneLockedOnStartupHandlerTest.kt - Copyright Â© 2019 David â€˜Bombe’ Roden
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by