[gnome-calculator/gnome-3-32] Removed debug logs



commit 5f7565048e2ebb81d84d3c9e48596d09af18d3ce
Author: Robert Roth <robert roth off gmail com>
Date:   Wed Mar 27 01:59:30 2019 +0200

    Removed debug logs

 lib/number.vala | 5 -----
 1 file changed, 5 deletions(-)
---
diff --git a/lib/number.vala b/lib/number.vala
index 8ec60288..1f930bea 100644
--- a/lib/number.vala
+++ b/lib/number.vala
@@ -21,7 +21,6 @@
  *
  *  FOR A GENERAL DESCRIPTION OF THE PHILOSOPHY AND DESIGN OF MP,
  *  SEE - R. P. BRENT, A FORTRAN MULTIPLE-PRECISION ARITHMETIC
- *  PACKAGE, ACM TRANS. MATH. SOFTWARE 4 (MARCH 1978), 57-70.
  *  SOME ADDITIONAL DETAILS ARE GIVEN IN THE SAME ISSUE, 71-81.
  *  FOR DETAILS OF THE IMPLEMENTATION, CALLING SEQUENCES ETC. SEE
  *  THE MP USERS GUIDE.
@@ -1184,16 +1183,12 @@ public Number? mp_set_from_string (string str, int default_base = 10)
 
     literal_base = parse_literal_prefix (str, ref base_prefix);
 
-    info ("number_base is %d", number_base);
-
     if (number_base != 0 && literal_base != 0 && literal_base != number_base)
         return null;
 
-    info ("literal_base is %d", literal_base);
     if (number_base == 0)
         number_base = (literal_base != 0) ? literal_base : default_base;
 
-    info ("number_base is %d", number_base);
     /* Check if this has a sign */
     var negate = false;
     index = base_prefix;


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]