Details
Description
Comment lines on a line of code are not calculated correctly and falsify NCLOC result :
public void run() { int i = 5; // comment on line of code, ncloc should not be impacted int j = 5; /** test comment tst 2 comment **/ int k = 5; /* another test comment */ }
will count 2 ncloc instead of 5