(StringBuilder buffer)
| 1636 | //buffer.append(LINE_SEP); |
| 1637 | //} |
| 1638 | private void appendPoolPointsLine(StringBuilder buffer) |
| 1639 | { |
| 1640 | buffer.append(IOConstants.TAG_POOLPOINTS).append(':'); |
| 1641 | buffer.append(thePC.getPoolAmount()); |
| 1642 | buffer.append(IOConstants.LINE_SEP); |
| 1643 | buffer.append(IOConstants.TAG_POOLPOINTSAVAIL).append(':'); |
| 1644 | buffer.append(thePC.getPointBuyPoints()); |
| 1645 | buffer.append(IOConstants.LINE_SEP); |
| 1646 | } |
| 1647 | |
| 1648 | private void appendAutoSortLines(StringBuilder buffer) |
| 1649 | { |
no test coverage detected