()
| 34 | } |
| 35 | |
| 36 | public void reset() { |
| 37 | this.queue = new ArrayList<MsgCheckerEvent>(); |
| 38 | this.lastType = TYPE_NONE; |
| 39 | this.lastMsg = null; |
| 40 | this.lastFrom = null; |
| 41 | this.lastTo = null; |
| 42 | this.lastDropped = null; |
| 43 | this.lastFirstDelivery = null; |
| 44 | } |
| 45 | |
| 46 | public void messageDeleted(Message m, DTNHost where, boolean dropped) { |
| 47 | this.add(m, where, null, TYPE_DELETE, dropped, null); |
no outgoing calls
no test coverage detected