cleanup: remove redundant '@author' tags from javadoc comments - 20

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: da6849616ca16be86f24c4dc7d6a330f9608f833
This commit is contained in:
Nikolay Chashnikov
2023-01-18 10:20:23 +01:00
committed by intellij-monorepo-bot
parent 4a1b1e2eb2
commit 0f2be24d8b
43 changed files with 0 additions and 132 deletions

View File

@@ -20,9 +20,6 @@ import com.intellij.psi.PsiType;
import com.intellij.psi.PsiTypeVisitorEx;
import org.jetbrains.annotations.NotNull;
/**
* @author db
*/
public abstract class PsiExtendedTypeVisitor<X> extends PsiTypeVisitorEx<X> {
@Override
public X visitClassType(@NotNull final PsiClassType classType) {

View File

@@ -23,9 +23,6 @@ import org.jetbrains.annotations.NotNull;
import java.util.*;
/**
* @author db
*/
public class PsiTypeVariableFactory {
private int myCurrent;
private final List<Set<PsiTypeVariable>> myClusters = new LinkedList<>();

View File

@@ -19,9 +19,6 @@ import com.intellij.openapi.diagnostic.Logger;
import com.intellij.psi.PsiType;
import com.intellij.refactoring.typeCook.deductive.resolver.Binding;
/**
* @author db
*/
public abstract class Constraint {
private static final Logger LOG = Logger.getInstance(Constraint.class);

View File

@@ -28,9 +28,6 @@ import org.jetbrains.annotations.NonNls;
import java.util.*;
/**
* @author db
*/
public class ReductionSystem {
final Set<Constraint> myConstraints = new HashSet<>();
final Set<PsiElement> myElements;

View File

@@ -31,9 +31,6 @@ import java.util.HashSet;
import java.util.Map;
import java.util.Set;
/**
* @author db
*/
public class Result {
private static final Logger LOG = Logger.getInstance(Result.class);

View File

@@ -18,9 +18,6 @@ package com.intellij.refactoring.typeCook.deductive.builder;
import com.intellij.psi.PsiType;
import com.intellij.refactoring.typeCook.deductive.resolver.Binding;
/**
* @author db
*/
public class Subtype extends Constraint {
public Subtype(PsiType left, PsiType right) {
super(left, right);

View File

@@ -20,9 +20,6 @@ import com.intellij.psi.PsiTypeVariable;
import java.util.Set;
/**
* @author db
*/
public abstract class Binding {
public abstract PsiType apply(PsiType type);

View File

@@ -38,9 +38,6 @@ import java.util.LinkedHashSet;
import java.util.LinkedList;
import java.util.Set;
/**
* @author db
*/
@SuppressWarnings({"SuspiciousNameCombination"})
public class BindingFactory {
private static final Logger LOG = Logger.getInstance(BindingFactory.class);

View File

@@ -17,9 +17,6 @@ package com.intellij.refactoring.typeCook.deductive.resolver;
import java.util.LinkedList;
/**
* @author db
*/
public class SolutionHolder {
private final LinkedList<Binding> mySolutions = new LinkedList<>();

View File

@@ -23,9 +23,6 @@ import org.jetbrains.annotations.NotNull;
import java.util.LinkedHashSet;
import java.util.Set;
/**
* @author db
*/
public class VictimCollector extends Visitor {
final Set<PsiElement> myVictims = new LinkedHashSet<>();
final PsiElement[] myElements;

View File

@@ -18,9 +18,6 @@ package com.intellij.refactoring.typeCook.deductive.util;
import com.intellij.psi.*;
import org.jetbrains.annotations.NotNull;
/**
* @author db
*/
public abstract class Visitor extends JavaRecursiveElementWalkingVisitor {
@Override public void visitPackage(final @NotNull PsiPackage aPackage) {
final PsiDirectory[] dirs = aPackage.getDirectories();

View File

@@ -24,9 +24,6 @@ import java.util.HashMap;
import java.util.LinkedList;
import java.util.Map;
/**
* @author db
*/
public class TypeEvaluator {
private final HashMap<TypeMigrationUsageInfo, LinkedList<PsiType>> myTypeMap;
private final TypeMigrationRules myRules;

View File

@@ -42,9 +42,6 @@ import org.jetbrains.annotations.*;
import javax.swing.*;
import java.util.*;
/**
* @author db
*/
public class TypeMigrationLabeler {
private static final Logger LOG = Logger.getInstance(TypeMigrationLabeler.class);
private boolean myShowWarning = true;

View File

@@ -17,9 +17,6 @@ import org.jetbrains.annotations.Nullable;
import java.util.*;
/**
* @author db
*/
public class TypeMigrationRules {
private final List<TypeConversionRule> myConversionRules;
private final Map<Class, Object> myConversionCustomSettings = new HashMap<>();

View File

@@ -12,9 +12,6 @@ import java.util.Arrays;
import java.util.Deque;
import java.util.List;
/**
* @author db
*/
public final class Util {
private Util() { }

View File

@@ -11,9 +11,6 @@ import com.intellij.psi.util.PsiTreeUtil;
import com.intellij.testFramework.LightProjectDescriptor;
import org.jetbrains.annotations.NotNull;
/**
* @author db
*/
public class TypeMigrationTest extends TypeMigrationTestBase {
private PsiElementFactory myFactory;

View File

@@ -9,9 +9,6 @@ import java.util.Collection;
import java.util.Collections;
import java.util.concurrent.Future;
/**
* @author db
*/
public final class Callbacks {
public interface ConstantRef {

View File

@@ -14,9 +14,6 @@ import java.lang.annotation.RetentionPolicy;
import java.util.*;
import java.util.function.Predicate;
/**
* @author db
*/
public final class ClassRepr extends ClassFileRepr {
private final TypeRepr.ClassType mySuperClass;
private final Set<TypeRepr.AbstractType> myInterfaces;

View File

@@ -15,9 +15,6 @@ import org.jetbrains.org.objectweb.asm.signature.SignatureVisitor;
import java.lang.annotation.RetentionPolicy;
import java.util.*;
/**
* @author db
*/
final class ClassfileAnalyzer {
private final static Logger LOG = Logger.getInstance(ClassfileAnalyzer.class);
public static final String LAMBDA_FACTORY_CLASS = "java/lang/invoke/LambdaMetafactory";

View File

@@ -6,9 +6,6 @@ import org.jetbrains.org.objectweb.asm.Opcodes;
import java.util.*;
/**
* @author db
*/
public abstract class Difference {
public static boolean weakerAccess(final int me, final int than) {

View File

@@ -15,9 +15,6 @@
*/
package org.jetbrains.jps.builders.java.dependencyView;
/**
* @author db
*/
public interface LoggerWrapper<T> {
boolean isDebugEnabled();
void debug(String comment, T t);

View File

@@ -9,9 +9,6 @@ import java.io.ByteArrayOutputStream;
import java.io.PrintStream;
import java.util.*;
/**
* @author db
*/
abstract class ObjectObjectMultiMaplet<K, V> implements Streamable, CloseableMaplet {
abstract boolean containsKey(final K key);

View File

@@ -13,9 +13,6 @@ import java.io.PrintStream;
import java.util.HashSet;
import java.util.Set;
/**
* @author db
*/
class Proto implements RW.Savable, Streamable, ProtoEntity {
public final int access;
public final int signature;

View File

@@ -10,9 +10,6 @@ import org.jetbrains.jps.builders.storage.BuildDataCorruptedException;
import java.io.*;
import java.util.Collection;
/**
* @author db
*/
public final class RW {
private RW() {

View File

@@ -17,12 +17,6 @@ package org.jetbrains.jps.builders.java.dependencyView;
import java.io.PrintStream;
/**
* Created with IntelliJ IDEA.
* @author db
* To change this template use File | Settings | File Templates.
*/
interface Streamable {
void toStream(DependencyContext context, PrintStream stream);
}

View File

@@ -13,9 +13,6 @@ import java.io.IOException;
import java.util.Collection;
import java.util.Set;
/**
* @author db
*/
public final class TypeRepr {
private static final byte PRIMITIVE_TYPE = 0x0;
private static final byte CLASS_TYPE = 0x1;

View File

@@ -15,9 +15,6 @@ import java.io.IOException;
import java.io.PrintStream;
import java.util.*;
/**
* @author db
*/
final class UsageRepr {
private static final byte FIELD_USAGE = 0x0;
private static final byte FIELD_ASSIGN_USAGE = 0x1;

View File

@@ -15,9 +15,6 @@
*/
package org.jetbrains.ether;
/**
* @author db
*/
public class AnnotationTest extends IncrementalTestCase {
public AnnotationTest() {
super("annotations");

View File

@@ -15,9 +15,6 @@
*/
package org.jetbrains.ether;
/**
* @author db
*/
public class ClassModifierTest extends IncrementalTestCase {
public ClassModifierTest() {
super("classModifiers");

View File

@@ -15,9 +15,6 @@
*/
package org.jetbrains.ether;
/**
* @author db
*/
public class ClassPropertyTest extends IncrementalTestCase {
public ClassPropertyTest() {
super("classProperties");

View File

@@ -15,9 +15,6 @@
*/
package org.jetbrains.ether;
/**
* @author db
*/
public class ClassRenameTest extends IncrementalTestCase {
public ClassRenameTest() {
super("changeName");

View File

@@ -9,9 +9,6 @@ import org.jetbrains.jps.model.JpsModuleRootModificationUtil;
import org.jetbrains.jps.model.library.sdk.JpsSdk;
import org.jetbrains.jps.model.module.JpsModule;
/**
* @author db
*/
public class CommonTest extends IncrementalTestCase {
public CommonTest() {
super("common");

View File

@@ -15,9 +15,6 @@
*/
package org.jetbrains.ether;
/**
* @author db
*/
public class FieldModifierTest extends IncrementalTestCase {
public FieldModifierTest() {
super("fieldModifiers");

View File

@@ -21,9 +21,6 @@ import org.jetbrains.jps.model.java.compiler.JavaCompilers;
import org.jetbrains.jps.model.java.compiler.JpsJavaCompilerConfiguration;
import org.jetbrains.jps.model.module.JpsModule;
/**
* @author db
*/
public class FieldPropertyTest extends IncrementalTestCase {
public FieldPropertyTest() {
super("fieldProperties");

View File

@@ -15,9 +15,6 @@
*/
package org.jetbrains.ether;
/**
* @author db
*/
public class GenericTest extends IncrementalTestCase {
public GenericTest() {
super("generics");

View File

@@ -27,9 +27,6 @@ import java.io.File;
import java.io.IOException;
import java.util.*;
/**
* @author db
*/
public abstract class IncrementalTestCase extends JpsBuildTestCase {
private static final String MODULE_DIR_PREFIX = "module";

View File

@@ -17,9 +17,6 @@ import org.jetbrains.jps.model.module.JpsModule;
import java.io.File;
import java.util.Map;
/**
* @author db
*/
public class MarkDirtyTest extends IncrementalTestCase {
public MarkDirtyTest() {
super("markDirty");

View File

@@ -15,9 +15,6 @@
*/
package org.jetbrains.ether;
/**
* @author db
*/
public class MemberChangeTest extends IncrementalTestCase {
public MemberChangeTest() {
super("membersChange");

View File

@@ -15,9 +15,6 @@
*/
package org.jetbrains.ether;
/**
* @author db
*/
public class MethodModifierTest extends IncrementalTestCase {
public MethodModifierTest() {
super("methodModifiers");

View File

@@ -1,9 +1,6 @@
// Copyright 2000-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
package org.jetbrains.ether;
/**
* @author db
*/
public class MethodPropertyTest extends IncrementalTestCase {
public MethodPropertyTest() {
super("methodProperties");

View File

@@ -15,9 +15,6 @@
*/
package org.jetbrains.ether;
/**
* @author db
*/
public class PackageInfoTest extends IncrementalTestCase {
public PackageInfoTest() {
super("packageInfo");

View File

@@ -6,9 +6,6 @@ import org.jetbrains.jps.incremental.relativizer.PathRelativizerService;
import java.io.File;
/**
* @author db
*/
public final class StorageDumper {
private static class Env {
final String myProjectPath;

View File

@@ -33,9 +33,6 @@ import org.jetbrains.annotations.Nullable;
import java.util.Set;
/**
* @author db
*/
public abstract class PsiAnchor {
private static final Logger LOG = Logger.getInstance(PsiAnchor.class);
@Nullable