|
|
|
|
|
by qcnguy
327 days ago
|
|
It has to work that way or else you can't use the standard library. What you want to block is not: StringUtils.trim(String foo);
but myApp.doSomething(AnotherMyType amt);
The latter is saying "I need not any string but a specific kind of string". |
|