Index: trunk/EventBenchCore/src/de/ugoe/cs/eventbench/data/Event.java
===================================================================
--- trunk/EventBenchCore/src/de/ugoe/cs/eventbench/data/Event.java	(revision 1)
+++ trunk/EventBenchCore/src/de/ugoe/cs/eventbench/data/Event.java	(revision 2)
@@ -26,6 +26,4 @@
 
 
-	
-
 	private String idInfo = null;
 	
@@ -46,4 +44,9 @@
 			return false;
 		}
+	}
+	
+	@Override
+	public String toString() {
+		return getStandardId();
 	}
 
Index: trunk/EventBenchCore/src/de/ugoe/cs/eventbench/markov/MarkovModel.java
===================================================================
--- trunk/EventBenchCore/src/de/ugoe/cs/eventbench/markov/MarkovModel.java	(revision 1)
+++ trunk/EventBenchCore/src/de/ugoe/cs/eventbench/markov/MarkovModel.java	(revision 2)
@@ -46,16 +46,4 @@
 	}
 	
-	public void printRandomWalk() {
-		State currentState = initialState;
-		IMemory<State> history = new IncompleteMemory<State>(5); // this is NOT used here, just for testing ...
-		history.add(currentState);
-		Console.println(currentState.getId());
-		while(!currentState.equals(endState)) {
-			currentState = currentState.getNextState();
-			Console.println(currentState.getId());
-			history.add(currentState);
-		}
-	}
-	
 	public List<? extends Event<?>> randomSequence() {
 		List<Event<?>> sequence = new LinkedList<Event<?>>();
@@ -64,5 +52,4 @@
 			sequence.add(currentState.getAction());
 		}
-		System.out.println(currentState.getId());
 		while(!currentState.equals(endState)) {
 			currentState = currentState.getNextState();
@@ -70,5 +57,4 @@
 				sequence.add(currentState.getAction());
 			}
-			System.out.println(currentState.getId());
 		}
 		return sequence;
