tsantalis / RefactoringMiner

MIT License
345 stars 132 forks source link

Added Java comment should be shown #749

Open koppor opened 1 week ago

koppor commented 1 week ago

Context: https://github.com/JabRef/jabref/pull/11399

GitHub:

image

RefactoringMiner:

image

tsantalis commented 1 week ago

@koppor Thank you for reporting this issue.

This is actually an inline comment, not Javadoc.

The reason I make this distinction is because the Eclipse JDT Parser we use, represent Javadoc as AST nodes, but inline comments are not represented as AST nodes. This makes it impossible for us to show any changes for inline comments.

I will discuss with @pouryafard75 if there is any way to solve this issue.