-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Complex Cases #21
Comments
@pouryafard75 |
@tsantalis
|
ensureFolderExists(certificatePath.getParentFile());
ensureFolderExists(privateKeyPath.getParentFile()); should match with certificatePath.getParentFile().mkdirs();
privateKeyPath.getParentFile().mkdirs(); |
@pouryafard75 So, in this case the mappings shown in #21 (comment) will be discarded. We can generate these sub-expression mappings directly in the Extract/Inline Method refactoring objects, |
@tsantalis For case 2, the mappings are correct in my opinion. Let me know if you disagree. |
@pouryafard75 |
Dir: community/server/src/main/java/org/neo4j/server/security/
MultiMappings must be discussed. @tsantalis
There is a recursive method
checkForTestRoots
. @tsantalis Should we matchLine 139 parent commit
testFolders.addAll(ModuleRootManager.getInstance(srcModule).getSourceRoots(JavaSourceRootType.TEST_SOURCE));
with Line 140 child commit
testFolders.addAll(ModuleRootManager.getInstance(module).getSourceRoots(JavaSourceRootType.TEST_SOURCE));
?Line 139 parent is already matched with Line 132 child.
The text was updated successfully, but these errors were encountered: