Skip to content

Commit

Permalink
Removed obsolete code.
Browse files Browse the repository at this point in the history
  • Loading branch information
colinrg committed Nov 4, 2016
1 parent 54f436e commit 59b1df2
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions 2015/Insert Doxygen Comments.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ function ExtractLineOfCode(code_line, stop_at, alt_stop_at, in_comment)
var prev_char = "";
var extracted_line = "";
var skip_white_space = true;
var padding = "";

for (i = 0; i < code_line.length; i++)
{
Expand Down Expand Up @@ -136,7 +135,7 @@ function ExtractLineOfCode(code_line, stop_at, alt_stop_at, in_comment)
else if (in_comment)
ret_code = 2;

return { ret_code: ret_code, extracted_line: extracted_line, padding: padding };
return { ret_code: ret_code, extracted_line: extracted_line };
}

function ExtractLinesOfCode(stop_at)
Expand Down

0 comments on commit 59b1df2

Please sign in to comment.