mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-05-17 22:59:43 +00:00
Resolves checkstyle errors for remaining p (#1091)
* Reduces checkstyle errors in page-object * Reduces checkstyle errors in partial-response * Reduces checkstyle errors in pipeline * Reduces checkstyle errors in poison-pill * Reduces checkstyle errors in priority-queue * Reduces checkstyle errors in private-class-data * Reduces checkstyle errors in property * Reduces checkstyle errors in prototype * Reduces checkstyle errors in proxy
This commit is contained in:
committed by
Ilkka Seppälä
parent
1fdc650545
commit
271d7ae9bd
@@ -27,9 +27,7 @@ import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
||||
/**
|
||||
*
|
||||
* Mutable stew class
|
||||
*
|
||||
* Mutable stew class.
|
||||
*/
|
||||
public class Stew {
|
||||
|
||||
@@ -41,7 +39,7 @@ public class Stew {
|
||||
private int numPeppers;
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
* Constructor.
|
||||
*/
|
||||
public Stew(int numPotatoes, int numCarrots, int numMeat, int numPeppers) {
|
||||
this.numPotatoes = numPotatoes;
|
||||
@@ -51,7 +49,7 @@ public class Stew {
|
||||
}
|
||||
|
||||
/**
|
||||
* Mix the stew
|
||||
* Mix the stew.
|
||||
*/
|
||||
public void mix() {
|
||||
LOGGER.info("Mixing the stew we find: {} potatoes, {} carrots, {} meat and {} peppers",
|
||||
@@ -59,7 +57,7 @@ public class Stew {
|
||||
}
|
||||
|
||||
/**
|
||||
* Taste the stew
|
||||
* Taste the stew.
|
||||
*/
|
||||
public void taste() {
|
||||
LOGGER.info("Tasting the stew");
|
||||
|
||||
Reference in New Issue
Block a user