about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--042name.cc2
1 files changed, 0 insertions, 2 deletions
diff --git a/042name.cc b/042name.cc
index 6aaf6066..077eed0d 100644
--- a/042name.cc
+++ b/042name.cc
@@ -49,7 +49,6 @@ void transform_names(const recipe_ordinal r) {
     // map names to addresses
     for (int in = 0;  in < SIZE(inst.ingredients);  ++in) {
       reagent& ingredient = inst.ingredients.at(in);
-      // Begin transform_names Ingredient Special-cases(ingredient, inst, caller)
       if (is_disqualified(ingredient, inst, caller.name)) continue;
       if (is_numeric_location(ingredient)) numeric_locations_used = true;
       if (is_named_location(ingredient)) names_used = true;
@@ -71,7 +70,6 @@ void transform_names(const recipe_ordinal r) {
     }
     for (int out = 0;  out < SIZE(inst.products);  ++out) {
       reagent& product = inst.products.at(out);
-      // Begin transform_names Product Special-cases(product, inst, caller)
       if (is_disqualified(product, inst, caller.name)) continue;
       if (is_numeric_location(product)) numeric_locations_used = true;
       if (is_named_location(product)) names_used = true;