(int depth, Object value)
| 106 | } |
| 107 | |
| 108 | private void debugReturn(int depth, Object value) { |
| 109 | if (LOG.isDebugEnabled()) { |
| 110 | LOG.debug(indent(depth) + "returning " + toString(value)); |
| 111 | } |
| 112 | } |
| 113 | |
| 114 | /** |
| 115 | * generates a String of white spaces for debugging indentation |
no test coverage detected