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:
Nikolay Chashnikov
2023-01-17 19:04:00 +01:00
committed by intellij-monorepo-bot
parent 4899a5a210
commit 1487a324c4
296 changed files with 0 additions and 814 deletions

View File

@@ -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");

View File

@@ -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;

View File

@@ -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;

View File

@@ -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;

View File

@@ -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();

View File

@@ -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);

View File

@@ -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;