We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ffe92b commit 2f9d6dbCopy full SHA for 2f9d6db
com/builder/Computer.java
@@ -35,11 +35,12 @@ public boolean isBluetoothEnabled(){
35
36
private Computer(ComputerBuilder builder){
37
38
- this.ram = com.builder;
39
- this.hdd = com.builder;
+ this.ram = builder.ram;
+ this.hdd = builder.hdd;
40
+
41
+ this.isGraphicsCardEnable= builder.isGraphicsCardEnable;
42
+ this.isBluetoothEnabled= builder.isBluetoothEnabled;
43
- this.isGraphicsCardEnable = com.isGraphicsCardEnable;
- this.isBluetoothEnabled = com.isBluetoothEnabled;
44
}
45
46
0 commit comments