X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fcore%2FWebOfTrustUpdaterImpl.java;h=8cac572f6df517c7175b380d72d6cc0e7e2de99d;hp=2201fd9efa27a1f90a9ccb264aed31869b65ecbd;hb=62573c314957b1851f4fbe693b8746686caa940a;hpb=c8897b270214c5e3c1e0c5cd4db9ac1821bfbde0 diff --git a/src/main/java/net/pterodactylus/sone/core/WebOfTrustUpdaterImpl.java b/src/main/java/net/pterodactylus/sone/core/WebOfTrustUpdaterImpl.java index 2201fd9..8cac572 100644 --- a/src/main/java/net/pterodactylus/sone/core/WebOfTrustUpdaterImpl.java +++ b/src/main/java/net/pterodactylus/sone/core/WebOfTrustUpdaterImpl.java @@ -1,5 +1,5 @@ /* - * Sone - WebOfTrustUpdaterImpl.java - Copyright © 2013 David Roden + * Sone - WebOfTrustUpdaterImpl.java - Copyright © 2013–2016 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 @@ -40,8 +40,6 @@ import com.google.inject.Singleton; /** * Updates WebOfTrust identity data in a background thread because communicating * with the WebOfTrust plugin can potentially last quite long. - * - * @author David ‘Bombe’ Roden */ @Singleton public class WebOfTrustUpdaterImpl extends AbstractService implements WebOfTrustUpdater { @@ -229,8 +227,6 @@ public class WebOfTrustUpdaterImpl extends AbstractService implements WebOfTrust /** * Base class for WebOfTrust update jobs. - * - * @author David ‘Bombe’ Roden */ @VisibleForTesting class WebOfTrustUpdateJob implements Runnable { @@ -302,8 +298,6 @@ public class WebOfTrustUpdaterImpl extends AbstractService implements WebOfTrust /** * Update job that sets the trust relation between two identities. - * - * @author David ‘Bombe’ Roden */ @VisibleForTesting class SetTrustJob extends WebOfTrustUpdateJob { @@ -389,8 +383,6 @@ public class WebOfTrustUpdaterImpl extends AbstractService implements WebOfTrust /** * Base class for context updates of an {@link OwnIdentity}. - * - * @author David ‘Bombe’ Roden */ @VisibleForTesting class WebOfTrustContextUpdateJob extends WebOfTrustUpdateJob { @@ -445,8 +437,6 @@ public class WebOfTrustUpdaterImpl extends AbstractService implements WebOfTrust /** * Job that adds a context to an {@link OwnIdentity}. - * - * @author David ‘Bombe’ Roden */ @VisibleForTesting class AddContextJob extends WebOfTrustContextUpdateJob { @@ -481,8 +471,6 @@ public class WebOfTrustUpdaterImpl extends AbstractService implements WebOfTrust /** * Job that removes a context from an {@link OwnIdentity}. - * - * @author David ‘Bombe’ Roden */ @VisibleForTesting class RemoveContextJob extends WebOfTrustContextUpdateJob { @@ -517,8 +505,6 @@ public class WebOfTrustUpdaterImpl extends AbstractService implements WebOfTrust /** * WebOfTrust update job that sets a property on an {@link OwnIdentity}. - * - * @author David ‘Bombe’ Roden */ @VisibleForTesting class SetPropertyJob extends WebOfTrustUpdateJob {