mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 06:39:38 +07:00
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:
committed by
intellij-monorepo-bot
parent
4a1b1e2eb2
commit
0f2be24d8b
@@ -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) {
|
||||
|
||||
@@ -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<>();
|
||||
|
||||
@@ -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);
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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);
|
||||
|
||||
|
||||
@@ -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);
|
||||
|
||||
@@ -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);
|
||||
|
||||
|
||||
@@ -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);
|
||||
|
||||
@@ -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<>();
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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();
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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<>();
|
||||
|
||||
@@ -12,9 +12,6 @@ import java.util.Arrays;
|
||||
import java.util.Deque;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @author db
|
||||
*/
|
||||
public final class Util {
|
||||
private Util() { }
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
|
||||
@@ -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 {
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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";
|
||||
|
||||
@@ -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) {
|
||||
|
||||
@@ -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);
|
||||
|
||||
@@ -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);
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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() {
|
||||
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -15,9 +15,6 @@
|
||||
*/
|
||||
package org.jetbrains.ether;
|
||||
|
||||
/**
|
||||
* @author db
|
||||
*/
|
||||
public class AnnotationTest extends IncrementalTestCase {
|
||||
public AnnotationTest() {
|
||||
super("annotations");
|
||||
|
||||
@@ -15,9 +15,6 @@
|
||||
*/
|
||||
package org.jetbrains.ether;
|
||||
|
||||
/**
|
||||
* @author db
|
||||
*/
|
||||
public class ClassModifierTest extends IncrementalTestCase {
|
||||
public ClassModifierTest() {
|
||||
super("classModifiers");
|
||||
|
||||
@@ -15,9 +15,6 @@
|
||||
*/
|
||||
package org.jetbrains.ether;
|
||||
|
||||
/**
|
||||
* @author db
|
||||
*/
|
||||
public class ClassPropertyTest extends IncrementalTestCase {
|
||||
public ClassPropertyTest() {
|
||||
super("classProperties");
|
||||
|
||||
@@ -15,9 +15,6 @@
|
||||
*/
|
||||
package org.jetbrains.ether;
|
||||
|
||||
/**
|
||||
* @author db
|
||||
*/
|
||||
public class ClassRenameTest extends IncrementalTestCase {
|
||||
public ClassRenameTest() {
|
||||
super("changeName");
|
||||
|
||||
@@ -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");
|
||||
|
||||
@@ -15,9 +15,6 @@
|
||||
*/
|
||||
package org.jetbrains.ether;
|
||||
|
||||
/**
|
||||
* @author db
|
||||
*/
|
||||
public class FieldModifierTest extends IncrementalTestCase {
|
||||
public FieldModifierTest() {
|
||||
super("fieldModifiers");
|
||||
|
||||
@@ -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");
|
||||
|
||||
@@ -15,9 +15,6 @@
|
||||
*/
|
||||
package org.jetbrains.ether;
|
||||
|
||||
/**
|
||||
* @author db
|
||||
*/
|
||||
public class GenericTest extends IncrementalTestCase {
|
||||
public GenericTest() {
|
||||
super("generics");
|
||||
|
||||
@@ -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";
|
||||
|
||||
@@ -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");
|
||||
|
||||
@@ -15,9 +15,6 @@
|
||||
*/
|
||||
package org.jetbrains.ether;
|
||||
|
||||
/**
|
||||
* @author db
|
||||
*/
|
||||
public class MemberChangeTest extends IncrementalTestCase {
|
||||
public MemberChangeTest() {
|
||||
super("membersChange");
|
||||
|
||||
@@ -15,9 +15,6 @@
|
||||
*/
|
||||
package org.jetbrains.ether;
|
||||
|
||||
/**
|
||||
* @author db
|
||||
*/
|
||||
public class MethodModifierTest extends IncrementalTestCase {
|
||||
public MethodModifierTest() {
|
||||
super("methodModifiers");
|
||||
|
||||
@@ -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");
|
||||
|
||||
@@ -15,9 +15,6 @@
|
||||
*/
|
||||
package org.jetbrains.ether;
|
||||
|
||||
/**
|
||||
* @author db
|
||||
*/
|
||||
public class PackageInfoTest extends IncrementalTestCase {
|
||||
public PackageInfoTest() {
|
||||
super("packageInfo");
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user