(GString that)
| 88 | } |
| 89 | |
| 90 | @Override |
| 91 | public GString plus(GString that) { |
| 92 | GString thatFrozen = that instanceof GStringImpl ? ((GStringImpl) that).freeze() : that; |
| 93 | return GStringUtil.plusImpl(super.getValues(), thatFrozen.getValues(), strings, thatFrozen.getStrings()); |
| 94 | } |
| 95 | |
| 96 | @Override |
| 97 | public Writer writeTo(Writer out) throws IOException { |
nothing calls this directly
no test coverage detected