Allison Ziegler il y a 6 ans
Parent
révision
40eca2d092
1 fichiers modifiés avec 0 ajouts et 2 suppressions
  1. 0
    2
      Calculator.java

+ 0
- 2
Calculator.java Voir le fichier

@@ -6,7 +6,6 @@ public class Calculator
6 6
     // instance variables - replace the example below with your own
7 7
     private double displayValue;
8 8
     private double memoryValue;
9
-    private boolean err;
10 9
 
11 10
     /**
12 11
      * Constructor for objects of class Calculator
@@ -15,7 +14,6 @@ public class Calculator
15 14
     {
16 15
         displayValue = 0;
17 16
         memoryValue = 0;
18
-        err = false;
19 17
     }
20 18
     
21 19