Allison Ziegler 6 lat temu
rodzic
commit
40eca2d092
1 zmienionych plików z 0 dodań i 2 usunięć
  1. 0
    2
      Calculator.java

+ 0
- 2
Calculator.java Wyświetl plik

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