(DiffSet ds)
| 28 | |
| 29 | protected JCheckBox jcCh; |
| 30 | @Override |
| 31 | protected DiffSet sortUniq(DiffSet ds) { |
| 32 | String strOrig = sortUniq(new String(ds.getOriginal())); |
| 33 | String strTarg = sortUniq(new String(ds.getTarget())); |
| 34 | return new DiffSet(strOrig.getBytes(), strTarg.getBytes()); |
| 35 | } |
| 36 | |
| 37 | public GUIDiffJson() throws Exception { |
| 38 | jcCh = new JCheckBox("Character based (default: Line based)"); |
no test coverage detected