# HG changeset patch # User Robert Casties # Date 1528470296 -7200 # Node ID 7b95bd44caec79f7ab16d4fc43b882414f8ac856 # Parent d1c2cf083c8d220e7c38a8bdec3eb3e5c7cda3dc nicer Entity.getShortString(). diff -r d1c2cf083c8d -r 7b95bd44caec src/main/java/org/mpi/openmind/repository/bo/Entity.java --- 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 entities) {