Skip to content

Commit

Permalink
Revert "Giving proper indentation"
Browse files Browse the repository at this point in the history
This reverts commit 0d91f70.
  • Loading branch information
rahusriv committed Nov 5, 2018
1 parent 0d91f70 commit 754480d
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
@AllArgsConstructor
@Data
public class Car {

String manufacturerName;
String fuleType;
String modelNo;
Expand All @@ -32,4 +31,5 @@ public void openBoot() {
public void enableChildLock() {
//Enable child lock in the car
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -40,4 +44,5 @@ public List<String> listOfAllFactories() {
public void fordEngineFuelTest(Car car) {
//Do engine test for ford
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -7,22 +7,26 @@ public class HondaAdapter implements ManufacturingPort {

@Override
public void manufacturingMethodology(Car car) {
// Process for manufacturing honda 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
Expand All @@ -40,4 +44,5 @@ public List<String> listOfAllFactories() {
public void carCrashAndSafetyTest(Car car) {
//Do car crash test got honda car
}

}

0 comments on commit 754480d

Please sign in to comment.