Browse Source

Remove non-special comments

Scott Lahteine 7 years ago
parent
commit
c43235dd39
2 changed files with 0 additions and 7 deletions
  1. 0
    3
      Marlin/src/gcode/motion/G2_G3.cpp
  2. 0
    4
      Marlin/src/gcode/motion/G5.cpp

+ 0
- 3
Marlin/src/gcode/motion/G2_G3.cpp View File

@@ -223,9 +223,6 @@ void plan_arc(
223 223
     planner.buffer_line_kinematic(cart, fr_mm_s, active_extruder);
224 224
   #endif
225 225
 
226
-  // As far as the parser is concerned, the position is now == target. In reality the
227
-  // motion control system might still be processing the action and the real tool position
228
-  // in any intermediate location.
229 226
   COPY(current_position, cart);
230 227
 } // plan_arc
231 228
 

+ 0
- 4
Marlin/src/gcode/motion/G5.cpp View File

@@ -29,10 +29,6 @@
29 29
 
30 30
 void plan_cubic_move(const float (&cart)[XYZE], const float (&offset)[4]) {
31 31
   cubic_b_spline(current_position, cart, offset, MMS_SCALED(feedrate_mm_s), active_extruder);
32
-
33
-  // As far as the parser is concerned, the position is now == destination. In reality the
34
-  // motion control system might still be processing the action and the real tool position
35
-  // in any intermediate location.
36 32
   COPY(current_position, cart);
37 33
 }
38 34
 

Loading…
Cancel
Save