X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;ds=sidebyside;f=src%2Fnet%2Fpterodactylus%2Fjsite%2Fcore%2FInsertManager.java;h=9d47da5b489dafdb56ea30f215539e7af31976e7;hb=c25f6b045eb48da039b7fb2784158b027e9b2fb3;hp=1a557981e9e458a07ff9e6e9ceb550b36577fea5;hpb=d4e8f3c2fbeaff6846ce51090e55b1b52a2e9136;p=jSite2.git diff --git a/src/net/pterodactylus/jsite/core/InsertManager.java b/src/net/pterodactylus/jsite/core/InsertManager.java index 1a55798..9d47da5 100644 --- a/src/net/pterodactylus/jsite/core/InsertManager.java +++ b/src/net/pterodactylus/jsite/core/InsertManager.java @@ -93,6 +93,7 @@ public class InsertManager { * @param insert * The insert that was removes */ + @SuppressWarnings("unused") private void fireInsertRemoved(Insert insert) { synchronized (insertListeners) { for (InsertListener insertListener : insertListeners) { @@ -107,6 +108,7 @@ public class InsertManager { * @param insert * The insert that was started */ + @SuppressWarnings("unused") private void fireInsertStarted(Insert insert) { synchronized (insertListeners) { for (InsertListener insertListener : insertListeners) { @@ -121,6 +123,7 @@ public class InsertManager { * @param insert * The insert that made some progress */ + @SuppressWarnings("unused") private void fireInsertProgressed(Insert insert) { synchronized (insertListeners) { for (InsertListener insertListener : insertListeners) { @@ -134,7 +137,10 @@ public class InsertManager { * * @param insert * The insert that generated a URI + * @param uri + * The generated URI */ + @SuppressWarnings("unused") private void fireInsertGeneratedURI(Insert insert, String uri) { synchronized (insertListeners) { for (InsertListener insertListener : insertListeners) { @@ -149,6 +155,7 @@ public class InsertManager { * @param insert * The insert that has finished */ + @SuppressWarnings("unused") private void fireInsertFinished(Insert insert) { synchronized (insertListeners) { for (InsertListener insertListener : insertListeners) {