@param strA 要比较的第一个字符串 @param strB 要比较的第二个字符串 @return 用来展示的diff结果
(String strA, String strB)
| 77 | * @return 用来展示的diff结果 |
| 78 | */ |
| 79 | public List<Result> diff(String strA, String strB) { |
| 80 | return diffElement(new JsonParser().parse(strA), new JsonParser().parse(strB)); |
| 81 | } |
| 82 | |
| 83 | public Diff() { |
| 84 | } |
nothing calls this directly
no test coverage detected