mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-06 03:21:12 +07:00
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:
committed by
intellij-monorepo-bot
parent
c17297cce7
commit
2999a2c383
@@ -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";
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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();
|
||||
|
||||
@@ -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 {
|
||||
|
||||
|
||||
@@ -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();
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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 {
|
||||
/**
|
||||
|
||||
@@ -19,7 +19,6 @@ import org.jetbrains.annotations.Nullable;
|
||||
|
||||
/**
|
||||
* TODO: Add description
|
||||
* User: dcheryasov
|
||||
*/
|
||||
public interface PyDecoratable {
|
||||
@Nullable
|
||||
|
||||
@@ -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> {
|
||||
/**
|
||||
|
||||
@@ -22,7 +22,6 @@ import org.jetbrains.annotations.Nullable;
|
||||
|
||||
/**
|
||||
* A list of function decorators.
|
||||
* @author dcheryasov
|
||||
*/
|
||||
public interface PyDecoratorList extends PyElement, StubBasedPsiElement<PyDecoratorListStub> {
|
||||
/**
|
||||
|
||||
@@ -17,7 +17,6 @@ package com.jetbrains.python.psi;
|
||||
|
||||
/**
|
||||
* The 'else:' part of various compound statements.
|
||||
* User: dcheryasov
|
||||
*/
|
||||
public interface PyElsePart extends PyStatementPart {
|
||||
}
|
||||
|
||||
@@ -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];
|
||||
|
||||
|
||||
@@ -18,7 +18,6 @@ package com.jetbrains.python.psi;
|
||||
/**
|
||||
* The 'finally' part.
|
||||
* @see PyTryPart
|
||||
* User: dcheryasov
|
||||
*/
|
||||
public interface PyFinallyPart extends PyStatementPart {
|
||||
}
|
||||
|
||||
@@ -19,7 +19,6 @@ import org.jetbrains.annotations.Nullable;
|
||||
|
||||
/**
|
||||
* Main part of a 'for' statement
|
||||
* User: dcheryasov
|
||||
*/
|
||||
public interface PyForPart extends PyStatementPart {
|
||||
/**
|
||||
|
||||
@@ -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];
|
||||
|
||||
@@ -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 {
|
||||
/**
|
||||
|
||||
@@ -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 {
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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> {
|
||||
}
|
||||
|
||||
@@ -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];
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -20,8 +20,6 @@ package com.jetbrains.python.psi;
|
||||
* @see PyExceptPart
|
||||
* @see PyFinallyPart
|
||||
* @see PyElsePart
|
||||
*
|
||||
* @author dcheryasov
|
||||
*/
|
||||
public interface PyTryPart extends PyStatementPart {
|
||||
}
|
||||
|
||||
@@ -18,8 +18,6 @@ package com.jetbrains.python.psi;
|
||||
/**
|
||||
* The 'while' part of a cycle.
|
||||
* @see PyElsePart
|
||||
*
|
||||
* @author dcheryasov
|
||||
*/
|
||||
public interface PyWhilePart extends PyConditionalStatementPart {
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user