( String template )
| 116 | } |
| 117 | |
| 118 | public SimpleTemplate( String template ) { |
| 119 | init(template); |
| 120 | } |
| 121 | |
| 122 | public SimpleTemplate( Reader reader ) throws IOException { |
| 123 | String template = getStringFromStream( reader ); |
nothing calls this directly
no test coverage detected