MCPcopy Create free account
hub / github.com/Skykai521/ECTranslation / getExplains

Method getExplains

src/Translation.java:107–120  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

105 }
106
107 private String getExplains() {
108 if (basic == null) {
109 return null;
110 }
111 String result = null;
112 List<String> explains = (List<String>) basic.get(EXPLAINS);
113 if (explains.size() > 0) {
114 result = "";
115 }
116 for (String explain : explains) {
117 result += explain + "\n";
118 }
119 return result;
120 }
121
122 private String getTranslationResult() {
123 if (translation == null) {

Callers 1

toStringMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected