(HtmlView view, T model)
| 63 | } |
| 64 | |
| 65 | static <T> Stream<String> htmlRender(HtmlView view, T model){ |
| 66 | String html = view.render(model); |
| 67 | return NEWLINE.splitAsStream(html); |
| 68 | } |
| 69 | |
| 70 | public static Stream<String> loadLines(String path) { |
| 71 | try{ |
no test coverage detected