Skip to content

Commit

Permalink
Fix MoveHandlerTest
Browse files Browse the repository at this point in the history
Signed-off-by: Rob Stryker <[email protected]>
  • Loading branch information
robstryker committed Nov 17, 2023
1 parent e19b21e commit 218761d
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
* Utility methods for converting Refactoring changes.
*
* @author Valeriy Svydenko
*
*
*/
public class ChangeUtil {

Expand Down Expand Up @@ -162,10 +162,10 @@ private static void convertResourceChange(ResourceChange resourceChange, Workspa
convertRenamePackcageChange(edit, renamePackageChange, annotationId);
} else if (resourceChange instanceof MoveCompilationUnitChange moveCUChange) {
convertMoveCompilationUnitChange(edit, moveCUChange, annotationId);
} else if (resourceChange instanceof CreateFileChange createFileChange) {
convertCreateFileChange(edit, createFileChange);
} else if (resourceChange instanceof CreateCompilationUnitChange createCUChange) {
convertCreateCompilationUnitChange(edit, createCUChange, annotationId);
} else if (resourceChange instanceof CreateFileChange createFileChange) {
convertCreateFileChange(edit, createFileChange);
}
}

Expand Down

0 comments on commit 218761d

Please sign in to comment.