[BAEL-4381] Fix formatting
This commit is contained in:
-7
@@ -1,6 +1,3 @@
|
||||
/**
|
||||
*
|
||||
*/
|
||||
package com.baeldung.archunit.smurfs.persistence;
|
||||
|
||||
import java.util.Collections;
|
||||
@@ -13,10 +10,6 @@ import com.baeldung.archunit.smurfs.persistence.domain.Smurf;
|
||||
|
||||
import static java.util.stream.Collectors.toList;
|
||||
|
||||
/**
|
||||
* @author Philippe
|
||||
*
|
||||
*/
|
||||
public class SmurfsRepository {
|
||||
|
||||
private static Map<String,Smurf> smurfs = Collections.synchronizedMap(new TreeMap<>());
|
||||
|
||||
-7
@@ -1,12 +1,5 @@
|
||||
/**
|
||||
*
|
||||
*/
|
||||
package com.baeldung.archunit.smurfs.persistence.domain;
|
||||
|
||||
/**
|
||||
* @author Philippe
|
||||
*
|
||||
*/
|
||||
public class Smurf {
|
||||
private String name;
|
||||
private boolean comic;
|
||||
|
||||
+1
-7
@@ -1,6 +1,4 @@
|
||||
/**
|
||||
*
|
||||
*/
|
||||
|
||||
package com.baeldung.archunit.smurfs.service;
|
||||
|
||||
import java.util.List;
|
||||
@@ -12,10 +10,6 @@ import com.baeldung.archunit.smurfs.persistence.SmurfsRepository;
|
||||
import com.baeldung.archunit.smurfs.persistence.domain.Smurf;
|
||||
import com.baeldung.archunit.smurfs.service.dto.SmurfDTO;
|
||||
|
||||
/**
|
||||
* @author Philippe
|
||||
*
|
||||
*/
|
||||
@Component
|
||||
public class SmurfsService {
|
||||
|
||||
|
||||
+1
-9
@@ -1,14 +1,6 @@
|
||||
/**
|
||||
*
|
||||
*/
|
||||
|
||||
package com.baeldung.archunit.smurfs.service.dto;
|
||||
|
||||
import com.baeldung.archunit.smurfs.persistence.domain.Smurf;
|
||||
|
||||
/**
|
||||
* @author Philippe
|
||||
*
|
||||
*/
|
||||
public class SmurfDTO {
|
||||
private String name;
|
||||
private boolean comic;
|
||||
|
||||
Reference in New Issue
Block a user