MCPcopy Create free account
hub / github.com/ReadyTalk/avian / append

Method append

classpath/java/util/Properties.java:70–80  ·  view source on GitHub ↗
(int c)

Source from the content-addressed store, hash-verified

68 private StringBuilder current = null;
69
70 private void append(int c) {
71 if (current == null) {
72 if (key == null) {
73 current = key = new StringBuilder();
74 } else {
75 current = value = new StringBuilder();
76 }
77 }
78
79 current.append((char) c);
80 }
81
82 private void finishLine(Map<String, Object> map) {
83 if (key != null) {

Callers 1

parseMethod · 0.95

Calls 1

appendMethod · 0.65

Tested by

no test coverage detected