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

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: f1b80125c2555d89f32aae4e5290d7771a357abf
This commit is contained in:
Nikolay Chashnikov
2023-01-18 10:29:52 +01:00
committed by intellij-monorepo-bot
parent c17297cce7
commit 2999a2c383
91 changed files with 1 additions and 128 deletions

View File

@@ -11,9 +11,6 @@ import org.jetbrains.annotations.Nullable;
import java.util.*;
import java.util.regex.Pattern;
/**
* @author dcheryasov
*/
@NonNls
public final class PyNames {
public static final String SITE_PACKAGES = "site-packages";

View File

@@ -21,7 +21,6 @@ import org.jetbrains.annotations.NotNull;
* Lists interesting features importable from __future__.
* {@code .toString()} returns the Python name of the feature.
* <br/>
* User: dcheryasov
*/
public enum FutureFeature {
DIVISION("division", LanguageLevel.PYTHON24, LanguageLevel.PYTHON30), // actually since 2.2

View File

@@ -25,7 +25,6 @@ import org.jetbrains.annotations.Nullable;
* Describes a property, result of either a call to property() or application of @property and friends.
* This is <i>not</i> a node of PSI tree.
* <br/>
* User: dcheryasov
*/
public interface Property {
String getName();

View File

@@ -26,8 +26,6 @@ import java.util.Map;
/**
* Something that can be called, passed parameters to, and return something back.
*
* @author dcheryasov
*/
public interface PyCallable extends PyTypedElement, PyQualifiedNameOwner {

View File

@@ -17,7 +17,6 @@ package com.jetbrains.python.psi;
/**
* The "for" part of list comprehensions and generators.
* User: dcheryasov
*/
public interface PyComprehensionForComponent extends PyComprehensionComponent {
PyExpression getIteratorVariable();

View File

@@ -19,7 +19,6 @@ import org.jetbrains.annotations.Nullable;
/**
* The "if" part of list comprehensions and generators.
* User: dcheryasov
*/
public interface PyComprehensionIfComponent extends PyComprehensionComponent {
@Nullable

View File

@@ -19,7 +19,6 @@ import org.jetbrains.annotations.Nullable;
/**
* A statement part that has a condition before it.
* User: dcheryasov
*/
public interface PyConditionalStatementPart extends PyStatementPart {
/**

View File

@@ -19,7 +19,6 @@ import org.jetbrains.annotations.Nullable;
/**
* TODO: Add description
* User: dcheryasov
*/
public interface PyDecoratable {
@Nullable

View File

@@ -27,7 +27,6 @@ import org.jetbrains.annotations.Nullable;
* In {@code @foo} form, {@code PyCallExpression}'s methods are related to invocation of {@code foo}
* as decorator. In {@code @foo(...)} form, these very methods are related to the call that returns the decorator
* to be applied. In either case, they are related to an invocation of {@code foo}.
* User: dcheryasov
*/
public interface PyDecorator extends PyCallExpression, StubBasedPsiElement<PyDecoratorStub> {
/**

View File

@@ -22,7 +22,6 @@ import org.jetbrains.annotations.Nullable;
/**
* A list of function decorators.
* @author dcheryasov
*/
public interface PyDecoratorList extends PyElement, StubBasedPsiElement<PyDecoratorListStub> {
/**

View File

@@ -17,7 +17,6 @@ package com.jetbrains.python.psi;
/**
* The 'else:' part of various compound statements.
* User: dcheryasov
*/
public interface PyElsePart extends PyStatementPart {
}

View File

@@ -19,9 +19,6 @@ import com.intellij.psi.StubBasedPsiElement;
import com.jetbrains.python.psi.stubs.PyExceptPartStub;
import org.jetbrains.annotations.Nullable;
/**
* @author dcheryasov
*/
public interface PyExceptPart extends PyElement, StubBasedPsiElement<PyExceptPartStub>, PyNamedElementContainer, PyStatementPart {
PyExceptPart[] EMPTY_ARRAY = new PyExceptPart[0];

View File

@@ -18,7 +18,6 @@ package com.jetbrains.python.psi;
/**
* The 'finally' part.
* @see PyTryPart
* User: dcheryasov
*/
public interface PyFinallyPart extends PyStatementPart {
}

View File

@@ -19,7 +19,6 @@ import org.jetbrains.annotations.Nullable;
/**
* Main part of a 'for' statement
* User: dcheryasov
*/
public interface PyForPart extends PyStatementPart {
/**

View File

@@ -18,7 +18,6 @@ package com.jetbrains.python.psi;
/**
* Branches of an 'if' statement.
* @see PyElsePart
* User: dcheryasov
*/
public interface PyIfPart extends PyConditionalStatementPart {
PyIfPart[] EMPTY_ARRAY = new PyIfPart[0];

View File

@@ -23,8 +23,6 @@ import java.util.List;
/**
* PSI element that contains named children that are visible in the current scope.
*
* @author dcheryasov
*/
public interface PyNamedElementContainer extends PsiElement {
/**

View File

@@ -6,7 +6,6 @@ import org.jetbrains.annotations.Nullable;
/**
* Abstract function parameter; may cover either a named parameter or a tuple of parameters.
* @see com.jetbrains.python.psi.impl.ParamHelper
* User: dcheryasov
*/
public interface PyParameter extends PyElement {

View File

@@ -22,7 +22,6 @@ import org.jetbrains.annotations.Nullable;
/**
* Represents a qualified expression, that is, of "a.b.c..." sort.
* User: dcheryasov
*/
public interface PyQualifiedExpression extends PyExpression {
@Nullable

View File

@@ -20,7 +20,6 @@ import com.jetbrains.python.psi.stubs.PyStarImportElementStub;
/**
* Marks the star in "from foo import *".
* User: dcheryasov
*/
public interface PyStarImportElement extends PyImplicitImportNameDefiner, StubBasedPsiElement<PyStarImportElementStub> {
}

View File

@@ -17,7 +17,6 @@ package com.jetbrains.python.psi;
/**
* Abstract part of a multipart statement.
* User: dcheryasov
*/
public interface PyStatementPart extends PyStatementListContainer {
PyStatementPart[] EMPTY_ARRAY = new PyStatementPart[0];

View File

@@ -19,7 +19,6 @@ import org.jetbrains.annotations.Nullable;
/**
* A part of a multi-part statement which can have an "else:" clause.
* User: dcheryasov
*/
public interface PyStatementWithElse extends PyStatement {
@Nullable

View File

@@ -20,8 +20,6 @@ package com.jetbrains.python.psi;
* @see PyExceptPart
* @see PyFinallyPart
* @see PyElsePart
*
* @author dcheryasov
*/
public interface PyTryPart extends PyStatementPart {
}

View File

@@ -18,8 +18,6 @@ package com.jetbrains.python.psi;
/**
* The 'while' part of a cycle.
* @see PyElsePart
*
* @author dcheryasov
*/
public interface PyWhilePart extends PyConditionalStatementPart {
}

View File

@@ -10,7 +10,6 @@ import java.util.Objects;
/**
* Provides a way to sort results of multi-resolve.
* User: dcheryasov
*/
public class RatedResolveResult implements ResolveResult {
private final int myRate;

View File

@@ -24,7 +24,6 @@ import java.util.NoSuchElementException;
* Useful when null must be a defined value.
* Instances are immutable.
* <br/>
* User: dcheryasov
*/
public class Maybe<T> {
private final boolean myIsDefined;