3225470df5
Revert "BAEL-3275: Using blocking queue for pub-sub"
11 lines
190 B
Groovy
11 lines
190 B
Groovy
package greeter
|
|
|
|
import groovy.transform.CompileStatic
|
|
|
|
@CompileStatic
|
|
class GreetingFormatter{
|
|
static String greeting(final String name) {
|
|
"Hello, ${name.capitalize()}"
|
|
}
|
|
}
|