(String file, boolean smiles)
| 66 | public final static int MESSAGE_MARKER_OTHER=0; |
| 67 | |
| 68 | public HistoryLoader(String file, boolean smiles) { |
| 69 | this.smiles = smiles; |
| 70 | cf = Config.getInstance(); |
| 71 | //#ifdef DETRANSLIT |
| 72 | fileName = util.DeTranslit.getInstance().get_actual_filename(file); |
| 73 | //#endif |
| 74 | fileName = new File(cf.msgPath, StringUtils.replaceBadChars(file) + ".txt").getPath(); |
| 75 | |
| 76 | fileSize = getFileSize(); |
| 77 | } |
| 78 | |
| 79 | public Vector stepBegin() { |
| 80 | current_index = -last_m-4; |
nothing calls this directly
no test coverage detected