return ""; // avoids concurrent modification exception
Location loc = getBoardRenderer().createLocation(e);
StringBuilder sb = new StringBuilder( "<html><font=-3>" ); // NON_NLS
GoBoardPosition space = (GoBoardPosition) ((IRectangularBoard)controller_.getBoard()).getPosition( loc );
if ( space != null && GameContext.getDebugMode() > 0 ) {
String spaceText = space.getDescription();
sb.append( spaceText);
IGoString string = space.getString();
IGoEye eye = space.getEye();
if ( string != null ) {
appendStringText(sb, spaceText, string);
}
// it might belong to both an eye and a string
if (eye != null) {