Index: /applications/editors/josm/plugins/pt_assistant/src/org/openstreetmap/josm/plugins/pt_assistant/validation/Checker.java
===================================================================
--- /applications/editors/josm/plugins/pt_assistant/src/org/openstreetmap/josm/plugins/pt_assistant/validation/Checker.java	(revision 33346)
+++ /applications/editors/josm/plugins/pt_assistant/src/org/openstreetmap/josm/plugins/pt_assistant/validation/Checker.java	(revision 33347)
@@ -18,5 +18,4 @@
 import org.openstreetmap.josm.data.validation.Test;
 import org.openstreetmap.josm.data.validation.TestError;
-import org.openstreetmap.josm.gui.dialogs.relation.GenericRelationEditor;
 import org.openstreetmap.josm.gui.dialogs.relation.RelationEditor;
 import org.openstreetmap.josm.gui.layer.OsmDataLayer;
@@ -133,5 +132,6 @@
                 && testError.getCode() != PTAssistantValidatorTest.ERROR_CODE_DIRECTION
                 && testError.getCode() != PTAssistantValidatorTest.ERROR_CODE_CONSTRUCTION
-                && testError.getCode() != PTAssistantValidatorTest.ERROR_CODE_ROAD_TYPE) {
+                && testError.getCode() != PTAssistantValidatorTest.ERROR_CODE_ROAD_TYPE
+                && testError.getCode() != PTAssistantValidatorTest.ERROR_CODE_END_STOP) {
             return null;
         }
@@ -155,5 +155,4 @@
 
                 if (SwingUtilities.isEventDispatchThread()) {
-
                     showRelationEditorAndZoom(layerParameter, relationParameter, zoomParameter);
 
@@ -163,12 +162,8 @@
                         @Override
                         public void run() {
-
                             showRelationEditorAndZoom(layerParameter, relationParameter, zoomParameter);
-
                         }
                     });
-
                 }
-
                 return command;
             }
@@ -176,5 +171,4 @@
 
         return null;
-
     }
 
@@ -190,5 +184,5 @@
 
         // create editor:
-        GenericRelationEditor editor = (GenericRelationEditor) RelationEditor.getEditor(layer, r,
+        RelationEditor editor = RelationEditor.getEditor(layer, r,
                 r.getMembersFor(primitives));
 
Index: /applications/editors/josm/plugins/pt_assistant/src/org/openstreetmap/josm/plugins/pt_assistant/validation/PTAssistantValidatorTest.java
===================================================================
--- /applications/editors/josm/plugins/pt_assistant/src/org/openstreetmap/josm/plugins/pt_assistant/validation/PTAssistantValidatorTest.java	(revision 33346)
+++ /applications/editors/josm/plugins/pt_assistant/src/org/openstreetmap/josm/plugins/pt_assistant/validation/PTAssistantValidatorTest.java	(revision 33347)
@@ -465,8 +465,10 @@
 	@Override
 	public boolean isFixable(TestError testError) {
-		if (testError.getCode() == ERROR_CODE_DIRECTION || testError.getCode() == ERROR_CODE_ROAD_TYPE
-				|| testError.getCode() == ERROR_CODE_CONSTRUCTION || testError.getCode() == ERROR_CODE_SORTING
-				|| testError.getCode() == PTAssistantValidatorTest.ERROR_CODE_SOLITARY_STOP_POSITION
-				|| testError.getCode() == PTAssistantValidatorTest.ERROR_CODE_PLATFORM_PART_OF_HIGHWAY) {
+		if (testError.getCode() == ERROR_CODE_DIRECTION
+				|| testError.getCode() == ERROR_CODE_ROAD_TYPE
+				|| testError.getCode() == ERROR_CODE_CONSTRUCTION
+				|| testError.getCode() == ERROR_CODE_SORTING
+				|| testError.getCode() == ERROR_CODE_END_STOP
+				|| testError.getCode() == ERROR_CODE_PLATFORM_PART_OF_HIGHWAY) {
 			return true;
 		}
@@ -496,11 +498,9 @@
 		List<Command> commands = new ArrayList<>();
 
-		if (testError.getCode() == ERROR_CODE_ROAD_TYPE || testError.getCode() == ERROR_CODE_CONSTRUCTION) {
+		if (testError.getCode() == ERROR_CODE_ROAD_TYPE
+				|| testError.getCode() == ERROR_CODE_CONSTRUCTION
+				|| testError.getCode() == ERROR_CODE_DIRECTION
+				|| testError.getCode() == ERROR_CODE_END_STOP) {
 			commands.add(WayChecker.fixErrorByZooming(testError));
-		}
-
-		if (testError.getCode() == ERROR_CODE_DIRECTION) {
-			commands.add(WayChecker.fixErrorByZooming(testError));
-
 		}
 
