systemdUnitFilePlugin icon indicating copy to clipboard operation
systemdUnitFilePlugin copied to clipboard

Doc <-> Code Unit Test has a bug.

Open SJrX opened this issue 3 years ago • 0 comments

    Set<String> codeButNotDoc = new TreeSet<>(code);    
    Set<String> docButNotCode = new TreeSet<>(code);
    codeButNotDoc.removeAll(doc);
    docButNotCode.removeAll(code);

Second line should be (doc) not (code).

If you switch it, there are a few errors, but I didn't feel like tracking them down at the moment.

See also #96

SJrX avatar Jun 03 '22 20:06 SJrX