Nikolaos Tsantalis
Nikolaos Tsantalis
@jrfaller When should we expect the next Gumtree release?
@wangsiqidahaoren Do you have a commit where such a change happened? RefactoringMiner could detect such a refactoring, but I am not sure if the extract method detection is running for...
@wangsiqidahaoren This is fine. Can you please at least provide an artificial example within the issue with some code, so that I can understand better the change scenario?
@wangsiqidahaoren I am closing the issue due to missing input.
@anchouls @onewhl We get the offset directly from the ASTNode ```java ASTNode node; this.startOffset = node.getStartPosition(); this.length = node.getLength(); this.endOffset = startOffset + length; ``` How is it possible that...
Notepad++ gives a start offset **16614**, line **347**, column **13** end offset **16643**, line **347**, column **42** The offsets are closer to what the ASTNode is giving ![2023-03-08 12_45_24-_new 1...
@anchouls @onewhl Is this related to the DOS vs. Unix line endings? DOS uses carriage return and line feed ("\r\n") as a line ending, while Unix uses just line feed...
@anchouls @onewhl My students told me that IntelliJ ignores the actual line endings of the file, and commits code using the Unix LF ("\n"). There was a file in our...
@Coppelian Can you please copy the internal errors being reported. Go to the error logs and copy the stack-trace. Normally, there should not be a problem. I think the reason...
@anchouls @onewhl You can further improve the import changes visualization by using the following APIs: `UMLImportListDiff.getCommonImports()` `UMLImportListDiff.getGroupedImports()` `UMLImportListDiff.getUnGroupedImports()` The screenshot below shows an example of import grouping, where 10 import...