-
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
Merge Conditional not shown in the diff #77
Comments
|
|
|
|
Modify the matchers to enable the matching of composite and non-composite with GeneralMatcher Better naming for the method
Modify the matchers to enable the matching of composite and non-composite with GeneralMatcher Better naming for the method
Modify the matchers to enable the matching of composite and non-composite with GeneralMatcher Better naming for the method
JetBrains/intellij-community@8d7a26e#diff-e65c0dd996f6794ca3aa6ae2e05c9666a944ad8d912b89f6e2f1a0660a2aab94L1176-L1182
We should check all new cases added in the oracle
tsantalis@d8bb59b#diff-6dacce79421f046bc43455a79cf254020e0880c9b86ed2f6242ef2b9943ac5fc
There is a Merge Conditional refactoring
Merge Conditional [if(getVirtualFile().isValid()), if(getVirtualFile() == null)] to return virtualFile == null || !virtualFile.isValid() ? null : virtualFile; in method public getData(dataId String) : Object from class com.intellij.openapi.vcs.history.FileHistoryPanelImpl
but the expressions of the
if
statements are not matched with the conditions of the ternary operator.We should allow getter call
getVirtualFile()
to be replaced with variable SimpleNamevirtualFile
and vice versa.The text was updated successfully, but these errors were encountered: