MCPcopy Index your code
hub / github.com/BombusMod/BombusMod / saveRecentList

Method saveRecentList

src/main/java/ui/controls/form/EditBox.java:124–134  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

122 }
123
124 public void saveRecentList() {
125 DataOutputStream os=NvStorage.CreateDataOutputStream();
126 try {
127 for (Enumeration e=recentList.elements(); e.hasMoreElements(); ) {
128 String s=(String)e.nextElement();
129 os.writeUTF(s);
130 }
131 } catch (Exception e) { }
132
133 NvStorage.writeFileRecord(os, ti.id, 0, true);
134 }
135}

Callers 2

commandActionMethod · 0.95
menuActionMethod · 0.80

Calls 4

writeFileRecordMethod · 0.95
elementsMethod · 0.80
writeUTFMethod · 0.80

Tested by

no test coverage detected