Index: /trunk/EventBenchCore/src/de/ugoe/cs/eventbench/assertions/FileEqualsReplay.java
===================================================================
--- /trunk/EventBenchCore/src/de/ugoe/cs/eventbench/assertions/FileEqualsReplay.java	(revision 145)
+++ /trunk/EventBenchCore/src/de/ugoe/cs/eventbench/assertions/FileEqualsReplay.java	(revision 146)
@@ -5,5 +5,5 @@
 
 public class FileEqualsReplay implements IReplayable {
-	
+
 	String actualFile = null;
 	String expectedFile = null;
@@ -12,28 +12,26 @@
 	 */
 	private static final long serialVersionUID = 1L;
-	
+
 	public void setActualFile(String s) {
 		actualFile = s;
 	}
-	
+
 	public void setExpectedFile(String s) {
 		expectedFile = s;
 	}
-	
-	public String getReplay() { 
-		
+
+	public String getReplay() {
+
 		StringBuilder currentMsgStr = new StringBuilder(800);
-		currentMsgStr.append("  <msg type=\"FileEquals\" ");
-		currentMsgStr.append("actual file=\"" + actualFile + "\" ");
-		currentMsgStr.append("expected file=\"" + expectedFile + "\"");
-		currentMsgStr.append(StringTools.ENDLINE);
-		currentMsgStr.append("  </msg>");
+		currentMsgStr.append("  <fileEquals ");
+		currentMsgStr.append("actualFile=\"" + actualFile + "\" ");
+		currentMsgStr.append("expectedFile=\"" + expectedFile + "\"/>");
 		currentMsgStr.append(StringTools.ENDLINE);
 		return currentMsgStr.toString();
 	}
-	
-	
-	//???
-	public String getTarget() { return "targetJo"; }
+
+	public String getTarget() {
+		return "targetNotUsed";
+	}
 
 }
