mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-26 14:04:17 +08:00
style: enable RedundantModifier
in checkstyle (#5140)
This commit is contained in:
@ -25,7 +25,7 @@ class QueueWithStack {
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
public QueueWithStack() {
|
||||
QueueWithStack() {
|
||||
this.inStack = new Stack<>();
|
||||
this.outStack = new Stack<>();
|
||||
}
|
||||
|
Reference in New Issue
Block a user