Revert "Giving proper indentation"

This reverts commit 0d91f704c2.
This commit is contained in:
Rahul Srivastava 2018-11-05 13:17:39 +05:30
parent 0d91f704c2
commit 754480d447
3 changed files with 12 additions and 2 deletions

View File

@ -5,7 +5,6 @@ import lombok.Data;
@AllArgsConstructor
@Data
public class Car {
String manufacturerName;
String fuleType;
String modelNo;
@ -32,4 +31,5 @@ public class Car {
public void enableChildLock() {
//Enable child lock in the car
}
}

View File

@ -8,21 +8,25 @@ public class FordAdapter implements ManufacturingPort {
@Override
public void manufacturingMethodology(Car car) {
// Process for manufacturing ford car
}
@Override
public void manufacturingLocation(String location) {
// Location at which ford manufacturing will take place
}
@Override
public void logoForTheCar(Car car) {
// Put ford logo on the car
}
@Override
public void timeToMarketForTheCar(Car car) {
// Find time to market for a particular ford car model
}
@Override
@ -40,4 +44,5 @@ public class FordAdapter implements ManufacturingPort {
public void fordEngineFuelTest(Car car) {
//Do engine test for ford
}
}

View File

@ -8,21 +8,25 @@ public class HondaAdapter implements ManufacturingPort {
@Override
public void manufacturingMethodology(Car car) {
// Process for manufacturing honda car
}
@Override
public void manufacturingLocation(String location) {
// Location at which honda manufacturing will take place
}
@Override
public void logoForTheCar(Car car) {
// Put honda logo on the car
}
@Override
public void timeToMarketForTheCar(Car car) {
// Find time to market for a particular honda car model
}
@Override
@ -40,4 +44,5 @@ public class HondaAdapter implements ManufacturingPort {
public void carCrashAndSafetyTest(Car car) {
//Do car crash test got honda car
}
}