Browse Source

some changes

Allison Ziegler 6 years ago
parent
commit
40eca2d092
1 changed files with 0 additions and 2 deletions
  1. 0
    2
      Calculator.java

+ 0
- 2
Calculator.java View File

@@ -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