MCPcopy Create free account
hub / github.com/BombusMod/BombusMod / loadRecentList

Method loadRecentList

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

Source from the content-addressed store, hash-verified

111 }
112
113 private void loadRecentList() {
114 recentList=new Vector(10);
115 try {
116 DataInputStream is=NvStorage.ReadFileRecord(ti.id, 0);
117
118 try {
119 while (true) recentList.addElement(is.readUTF());
120 } catch (EOFException e) { is.close(); is=null; }
121 } catch (Exception e) { }
122 }
123
124 public void saveRecentList() {
125 DataOutputStream os=NvStorage.CreateDataOutputStream();

Callers 1

EditBoxMethod · 0.95

Calls 3

ReadFileRecordMethod · 0.95
addElementMethod · 0.80
closeMethod · 0.45

Tested by

no test coverage detected