mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-18 20:41:22 +07:00
cleanup: remove redundant '@author' tags from javadoc comments - 7
Now we have Code Vision hints which determine the author via Git history and show it in the editor automatically, and this information is more accurate than the tags which were automatically added when files were created. GitOrigin-RevId: f2a6ec37a89b7497556ced0b92be3fa7679ba304
This commit is contained in:
committed by
intellij-monorepo-bot
parent
4899a5a210
commit
1487a324c4
@@ -25,9 +25,6 @@ import org.jetbrains.annotations.Nullable;
|
||||
|
||||
import java.util.*;
|
||||
|
||||
/**
|
||||
* @author dsl
|
||||
*/
|
||||
public final class DuplicatesFinder {
|
||||
private static final Logger LOG = Logger.getInstance(DuplicatesFinder.class);
|
||||
public static final Key<Parameter> PARAMETER = Key.create("PARAMETER");
|
||||
|
||||
@@ -22,9 +22,6 @@ import com.intellij.util.IncorrectOperationException;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
/**
|
||||
* @author dsl
|
||||
*/
|
||||
public class ExpressionReturnValue implements ReturnValue {
|
||||
private final PsiExpression myExpression;
|
||||
|
||||
|
||||
@@ -21,9 +21,6 @@ import com.intellij.util.IncorrectOperationException;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
/**
|
||||
* @author dsl
|
||||
*/
|
||||
public class FieldReturnValue implements ReturnValue {
|
||||
private final PsiField myField;
|
||||
|
||||
|
||||
@@ -38,9 +38,6 @@ import org.jetbrains.annotations.Nullable;
|
||||
|
||||
import java.util.*;
|
||||
|
||||
/**
|
||||
* @author dsl
|
||||
*/
|
||||
public final class Match {
|
||||
private static final Logger LOG = Logger.getInstance(Match.class);
|
||||
private final PsiElement myMatchStart;
|
||||
|
||||
@@ -7,9 +7,6 @@ import com.intellij.util.IncorrectOperationException;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
/**
|
||||
* @author dsl
|
||||
*/
|
||||
public final class ReturnStatementReturnValue implements ReturnValue {
|
||||
public static final ReturnStatementReturnValue INSTANCE = new ReturnStatementReturnValue();
|
||||
|
||||
|
||||
@@ -23,9 +23,6 @@ import com.intellij.util.IncorrectOperationException;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
/**
|
||||
* @author dsl
|
||||
*/
|
||||
public interface ReturnValue {
|
||||
boolean isEquivalent(ReturnValue other);
|
||||
|
||||
|
||||
@@ -23,9 +23,6 @@ import com.intellij.util.IncorrectOperationException;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
/**
|
||||
* @author dsl
|
||||
*/
|
||||
public class VariableReturnValue implements ReturnValue {
|
||||
private final PsiVariable myVariable;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user