changeset 93:7b95bd44caec

nicer Entity.getShortString().
author Robert Casties <casties@mpiwg-berlin.mpg.de>
date Fri, 08 Jun 2018 17:04:56 +0200
parents d1c2cf083c8d
children 869fb6bb3641
files src/main/java/org/mpi/openmind/repository/bo/Entity.java
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/main/java/org/mpi/openmind/repository/bo/Entity.java	Fri Jun 08 09:09:26 2018 +0200
+++ b/src/main/java/org/mpi/openmind/repository/bo/Entity.java	Fri Jun 08 17:04:56 2018 +0200
@@ -1085,7 +1085,7 @@
     }
 
     public String getShortString() {
-    	return "[" + this.getObjectClass() + " " + this.getId() + "] " + this.getOwnValue();
+    	return "[" + this.getObjectClass() + " " + this.getId() + "] \"" + this.getOwnValue() + "\" ";
     }
     
     public static String getShortStringList(List<Entity> entities) {