(OutputStream out, Object field)
| 113 | } |
| 114 | |
| 115 | public static void putField(OutputStream out, Object field) throws IOException { |
| 116 | putField(out, field, DEFAULT_DELIMITERS, false); |
| 117 | } |
| 118 | |
| 119 | public static void putField(OutputStream out, Object field, boolean includeTypeInformation) throws IOException { |
| 120 | putField(out, field, DEFAULT_DELIMITERS, includeTypeInformation); |
no test coverage detected