diff --git a/com/builder/Computer.java b/com/builder/Computer.java index 0b7955b..b58aea4 100644 --- a/com/builder/Computer.java +++ b/com/builder/Computer.java @@ -35,11 +35,12 @@ public boolean isBluetoothEnabled(){ private Computer(ComputerBuilder builder){ - this.ram = com.builder; - this.hdd = com.builder; + this.ram = builder.ram; + this.hdd = builder.hdd; + + this.isGraphicsCardEnable= builder.isGraphicsCardEnable; + this.isBluetoothEnabled= builder.isBluetoothEnabled; - this.isGraphicsCardEnable = com.isGraphicsCardEnable; - this.isBluetoothEnabled = com.isBluetoothEnabled; }