Returns an info message for similar strings. @param string original string @param similar similar string (can be null) @return info message
(final Object string, final Object similar)
| 1847 | * @return info message |
| 1848 | */ |
| 1849 | public static String similar(final Object string, final Object similar) { |
| 1850 | return similar == null ? Util.info(string) : Util.info("% (maybe: %)", string, similar); |
| 1851 | } |
| 1852 | |
| 1853 | /** |
| 1854 | * Removes whitespace and chops the specified value to a maximum size. |
no test coverage detected