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.
2 parents 5ffe92b + 2f9d6db commit d064c92Copy full SHA for d064c92
β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