Replaces null entries with #NOT_APPLICABLE. @param toNormalize the array to normalize @return the normalized array
(String[] toNormalize)
| 449 | * @return the normalized array |
| 450 | */ |
| 451 | protected String[] withoutNulls(String[] toNormalize) { |
| 452 | for (int i = 0; i < toNormalize.length; i++) { |
| 453 | String s = toNormalize[i]; |
| 454 | if (null == s) toNormalize[i] = NOT_APPLICABLE; |
| 455 | } |
| 456 | return toNormalize; |
| 457 | } |
| 458 | |
| 459 | /** |
| 460 | * Prints member information to {@link System#out}. |
no outgoing calls
no test coverage detected