/* * Copyright 2000-2016 JetBrains s.r.o. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.intellij.codeInspection; import com.intellij.codeInsight.FileModificationService; import com.intellij.codeInsight.editorActions.DeclarationJoinLinesHandler; import com.intellij.openapi.application.WriteAction; import com.intellij.openapi.project.Project; import com.intellij.psi.*; import com.intellij.psi.tree.IElementType; import com.intellij.psi.util.PsiUtil; import org.jetbrains.annotations.NotNull; public class RemoveAssignmentFix extends RemoveInitializerFix { @NotNull @Override public String getFamilyName() { return InspectionsBundle.message("inspection.unused.assignment.remove.assignment.quickfix"); } @Override public void applyFix(@NotNull Project project, @NotNull ProblemDescriptor descriptor) { final PsiElement element = descriptor.getPsiElement(); final PsiElement parent; if (element instanceof PsiReferenceExpression) { parent = element.getParent(); } else { parent = element; } if (!(parent instanceof PsiAssignmentExpression)) return; final IElementType operationSign = ((PsiAssignmentExpression)parent).getOperationTokenType(); PsiExpression rExpression = ((PsiAssignmentExpression)parent).getRExpression(); if (JavaTokenType.EQ != operationSign && rExpression != null ) { rExpression = DeclarationJoinLinesHandler.getInitializerExpression(((PsiAssignmentExpression)parent).getLExpression(), (PsiAssignmentExpression)parent); } final PsiElement gParent = parent.getParent(); if ((gParent instanceof PsiExpression || gParent instanceof PsiExpressionList || gParent instanceof PsiReturnStatement) && rExpression != null) { if (!FileModificationService.getInstance().prepareFileForWrite(gParent.getContainingFile())) return; PsiExpression finalRExpr = rExpression; WriteAction.run(() -> { if (gParent instanceof PsiParenthesizedExpression) { gParent.replace(finalRExpr); } else { parent.replace(finalRExpr); } }); return; } PsiElement resolve = null; if (element instanceof PsiReferenceExpression) { resolve = ((PsiReferenceExpression)element).resolve(); } else { final PsiExpression lExpr = PsiUtil.deparenthesizeExpression(((PsiAssignmentExpression)parent).getLExpression()); if (lExpr instanceof PsiReferenceExpression) { resolve = ((PsiReferenceExpression)lExpr).resolve(); } } if (!(resolve instanceof PsiVariable)) return; sideEffectAwareRemove(project, rExpression, parent, (PsiVariable)resolve); } }