From c43235dd398e0e0bf0f2d8a7a5dfcefd8175c35c Mon Sep 17 00:00:00 2001
From: Scott Lahteine <github@thinkyhead.com>
Date: Fri, 11 May 2018 00:36:04 -0500
Subject: [PATCH] Remove non-special comments

---
 Marlin/src/gcode/motion/G2_G3.cpp | 3 ---
 Marlin/src/gcode/motion/G5.cpp    | 4 ----
 2 files changed, 7 deletions(-)

diff --git a/Marlin/src/gcode/motion/G2_G3.cpp b/Marlin/src/gcode/motion/G2_G3.cpp
index 2596e6ca8d..8ce54978ca 100644
--- a/Marlin/src/gcode/motion/G2_G3.cpp
+++ b/Marlin/src/gcode/motion/G2_G3.cpp
@@ -223,9 +223,6 @@ void plan_arc(
     planner.buffer_line_kinematic(cart, fr_mm_s, active_extruder);
   #endif
 
-  // As far as the parser is concerned, the position is now == target. In reality the
-  // motion control system might still be processing the action and the real tool position
-  // in any intermediate location.
   COPY(current_position, cart);
 } // plan_arc
 
diff --git a/Marlin/src/gcode/motion/G5.cpp b/Marlin/src/gcode/motion/G5.cpp
index 01980e37c9..8cd70da15d 100644
--- a/Marlin/src/gcode/motion/G5.cpp
+++ b/Marlin/src/gcode/motion/G5.cpp
@@ -29,10 +29,6 @@
 
 void plan_cubic_move(const float (&cart)[XYZE], const float (&offset)[4]) {
   cubic_b_spline(current_position, cart, offset, MMS_SCALED(feedrate_mm_s), active_extruder);
-
-  // As far as the parser is concerned, the position is now == destination. In reality the
-  // motion control system might still be processing the action and the real tool position
-  // in any intermediate location.
   COPY(current_position, cart);
 }
 
-- 
GitLab