Method
_fold
(List<Class> typeInformation, Function<String, String> cleaner)
Source from the content-addressed store, hash-verified
| 54 | static public String fold(List<Class> typeInformation, Function<String, String> cleaner) { |
| 55 | return typeInformation == null ? "" : _fold(new ArrayList<>(typeInformation), cleaner); |
| 56 | } |
| 57 | |
| 58 | static protected String _fold(List<Class> typeInformation, Function<String, String> cleaner) { |
| 59 | return _fold(typeInformation, cleaner, true); |
| 60 | } |
| 61 | |
Tested by
no test coverage detected