From 5f2fd2ee6a43a9273c55718af183cc566761a726 Mon Sep 17 00:00:00 2001 From: sjm222 Date: Tue, 18 Jan 2011 21:45:17 +0000 Subject: [PATCH] tweaking log message --- .../mannlib/vitro/webapp/ontology/update/ABoxUpdater.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/webapp/src/edu/cornell/mannlib/vitro/webapp/ontology/update/ABoxUpdater.java b/webapp/src/edu/cornell/mannlib/vitro/webapp/ontology/update/ABoxUpdater.java index a10be0c6b..157b2c16f 100644 --- a/webapp/src/edu/cornell/mannlib/vitro/webapp/ontology/update/ABoxUpdater.java +++ b/webapp/src/edu/cornell/mannlib/vitro/webapp/ontology/update/ABoxUpdater.java @@ -370,7 +370,7 @@ public class ABoxUpdater { } if (count > 0) { - logger.log(count + " subject reference" + ((count > 1) ? "s" : "") + " to the " + deletedClass.getURI() + " class " + ((count > 1) ? "were" : "was") + " removed."); + logger.log(count + " subject reference" + ((count > 1) ? "s" : "") + " to the " + deletedClass.getURI() + " class " + ((count > 1) ? "were" : "was") + " removed."); } } finally { aboxModel.leaveCriticalSection(); @@ -395,7 +395,7 @@ public class ABoxUpdater { //log summary of changes if (count > 0) { - logger.log(count + " instance" + ((count > 1) ? "s" : "") + " of the " + deletedClass.getURI() + " class " + ((count > 1) ? "were" : "was") + " removed."); + logger.log(count + " instance" + ((count > 1) ? "s" : "") + " of the " + deletedClass.getURI() + " class " + ((count > 1) ? "were" : "was") + " removed."); } aboxModel.remove(retractions); @@ -420,7 +420,7 @@ public class ABoxUpdater { //log summary of changes if (count > 0) { - logger.log(count + " object reference" + ((count > 1) ? "s" : "") + " of the " + deletedClass.getURI() + " class " + ((count > 1) ? "were" : "was") + " removed."); + logger.log(count + " object reference" + ((count > 1) ? "s" : "") + " of the " + deletedClass.getURI() + " class " + ((count > 1) ? "were" : "was") + " removed."); } aboxModel.remove(retractions);