(String path, int direction)
| 50 | private String file; |
| 51 | |
| 52 | public ConfigData(String path, int direction) { |
| 53 | cf=Config.getInstance(); |
| 54 | array=new Vector(); |
| 55 | this.file=path; |
| 56 | |
| 57 | if (direction==0) { |
| 58 | importData(); |
| 59 | } else { |
| 60 | exportData(); |
| 61 | } |
| 62 | array=null; |
| 63 | } |
| 64 | |
| 65 | public final void exportData() { |
| 66 | // Sorted similar to Config.saveToStorage(). |
nothing calls this directly
no test coverage detected