Fix exception message.
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Fri, 5 Nov 2010 11:00:25 +0000 (12:00 +0100)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Fri, 5 Nov 2010 11:00:25 +0000 (12:00 +0100)
src/main/java/net/pterodactylus/sone/core/Core.java

index bd73c0c..d5625c9 100644 (file)
@@ -592,7 +592,7 @@ public class Core implements IdentityListener {
                String sonePrefix = "Sone/" + sone.getId();
                Long soneTime = configuration.getLongValue(sonePrefix + "/Time").getValue(null);
                if (soneTime == null) {
-                       logger.log(Level.INFO, "Could not load Sone because there is no Sone has been saved.");
+                       logger.log(Level.INFO, "Could not load Sone because no Sone has been saved.");
                        return;
                }
                long soneModificationCounter = configuration.getLongValue(sonePrefix + "/ModificationCounter").getValue((long) 0);