()
| 53 | } |
| 54 | static Diff instance = null; |
| 55 | public static Diff getInstance() throws Exception { |
| 56 | if (instance == null) { |
| 57 | |
| 58 | instance = new Diff(); |
| 59 | } |
| 60 | return instance; |
| 61 | } |
| 62 | |
| 63 | public static void diffPerCharacter(DiffSet set, DiffEventListener original_event, DiffEventListener target_event) |
| 64 | throws Exception { |
no outgoing calls
no test coverage detected