diff --git a/html/tutorial/MyApp.java b/html/tutorial/MyApp.java
index 6c100104db26653ab42bfb08561a9257a68b5414..1921257a0f3736ee45ec21597bae6b45f481a9ec 100644
--- a/html/tutorial/MyApp.java
+++ b/html/tutorial/MyApp.java
@@ -97,7 +97,6 @@ public class MyApp {
 	    // and choose the one with the best F-Measure
 	    AlignmentParser aparser = new AlignmentParser(0);
 	    Alignment reference = aparser.parse( "file://"+(new File ( "refalign.rdf" ) . getAbsolutePath()) );
-	    // JE: This does not work because BasicAlignment vs. OWLAPIAlignment
 	    Evaluator evaluator = new PRecEvaluator( reference, a1 );
 
 	    double best = 0.;
@@ -117,7 +116,6 @@ public class MyApp {
 				  new BufferedWriter(
 		                   new OutputStreamWriter( System.out, "UTF-8" )), true);
 	    AlignmentVisitor renderer = new SWRLRendererVisitor(writer);
-	    // JE: Here this will not break because result is already a OWLAPIAlignment
 	    result.render(renderer);
 	    writer.flush();
 	    writer.close();