MCPcopy Create free account
hub / github.com/PCGen/pcgen / appendPoolPointsLine

Method appendPoolPointsLine

code/src/java/pcgen/io/PCGVer2Creator.java:1638–1646  ·  view source on GitHub ↗
(StringBuilder buffer)

Source from the content-addressed store, hash-verified

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 {

Callers 1

createPCGStringMethod · 0.95

Calls 3

getPoolAmountMethod · 0.80
getPointBuyPointsMethod · 0.80
appendMethod · 0.45

Tested by

no test coverage detected