From: David ‘Bombe’ Roden Date: Fri, 5 Nov 2010 11:00:25 +0000 (+0100) Subject: Fix exception message. X-Git-Tag: 0.2-RC1~15 X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=commitdiff_plain;h=ca3084f361acdab99b0e19e872302abd222708ae Fix exception message. --- diff --git a/src/main/java/net/pterodactylus/sone/core/Core.java b/src/main/java/net/pterodactylus/sone/core/Core.java index bd73c0c..d5625c9 100644 --- a/src/main/java/net/pterodactylus/sone/core/Core.java +++ b/src/main/java/net/pterodactylus/sone/core/Core.java @@ -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);