Removed comments auto-generated by IDEA.
This commit is contained in:
@@ -16,11 +16,6 @@
|
||||
|
||||
package org.jetbrains.jet.lang.psi;
|
||||
|
||||
/**
|
||||
* User: Alefas
|
||||
* Date: 31.01.12
|
||||
*/
|
||||
|
||||
/**
|
||||
* This is an interface to show that {@link JetExpression} is not
|
||||
* actually an expression (in meaning that this expression can be placed after "val x = ").
|
||||
|
||||
@@ -51,10 +51,6 @@ import java.awt.*;
|
||||
import java.util.*;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* User: Alefas
|
||||
* Date: 17.01.12
|
||||
*/
|
||||
public class JetFunctionParameterInfoHandler implements ParameterInfoHandlerWithTabActionSupport<
|
||||
JetValueArgumentList,
|
||||
Pair<? extends FunctionDescriptor, CancelableResolveSession>,
|
||||
|
||||
@@ -33,10 +33,6 @@ import java.util.Collection;
|
||||
import static org.jetbrains.jet.plugin.projectView.JetProjectViewUtil.canRepresentPsiElement;
|
||||
import static org.jetbrains.jet.plugin.projectView.JetProjectViewUtil.getClassOrObjectChildren;
|
||||
|
||||
/**
|
||||
* User: Alefas
|
||||
* Date: 15.02.12
|
||||
*/
|
||||
public class JetClassOrObjectTreeNode extends AbstractPsiBasedNode<JetClassOrObject> {
|
||||
protected JetClassOrObjectTreeNode(Project project, JetClassOrObject jetClassOrObject, ViewSettings viewSettings) {
|
||||
super(project, jetClassOrObject, viewSettings);
|
||||
|
||||
@@ -30,10 +30,6 @@ import java.util.Collection;
|
||||
import java.util.Collections;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* User: Alefas
|
||||
* Date: 15.02.12
|
||||
*/
|
||||
public class JetDeclarationTreeNode extends AbstractPsiBasedNode<JetDeclaration> {
|
||||
public static final String CLASS_INITIALIZER = "<class initializer>";
|
||||
|
||||
|
||||
@@ -29,10 +29,6 @@ import java.util.Collection;
|
||||
import java.util.Collections;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* User: Alefas
|
||||
* Date: 15.02.12
|
||||
*/
|
||||
public class JetFileTreeNode extends PsiFileNode {
|
||||
public JetFileTreeNode(Project project, JetFile value, ViewSettings viewSettings) {
|
||||
super(project, value, viewSettings);
|
||||
|
||||
@@ -36,10 +36,6 @@ import java.util.ArrayList;
|
||||
import java.util.Collection;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* User: Alefas
|
||||
* Date: 15.02.12
|
||||
*/
|
||||
public class JetProjectViewProvider implements SelectableTreeStructureProvider, DumbAware {
|
||||
private Project myProject;
|
||||
|
||||
|
||||
@@ -18,9 +18,5 @@ package org.jetbrains.jet.plugin.refactoring;
|
||||
|
||||
import com.intellij.refactoring.RefactoringActionHandler;
|
||||
|
||||
/**
|
||||
* User: Alefas
|
||||
* Date: 25.01.12
|
||||
*/
|
||||
public abstract class JetIntroduceHandlerBase implements RefactoringActionHandler {
|
||||
}
|
||||
|
||||
@@ -37,10 +37,6 @@ import java.util.ArrayList;
|
||||
import java.util.regex.Matcher;
|
||||
import java.util.regex.Pattern;
|
||||
|
||||
/**
|
||||
* User: Alefas
|
||||
* Date: 31.01.12
|
||||
*/
|
||||
public class JetNameSuggester {
|
||||
private JetNameSuggester() {
|
||||
}
|
||||
|
||||
@@ -21,10 +21,6 @@ import com.intellij.openapi.project.Project;
|
||||
import java.util.HashSet;
|
||||
import java.util.Set;
|
||||
|
||||
/**
|
||||
* User: Alefas
|
||||
* Date: 07.02.12
|
||||
*/
|
||||
public abstract class JetNameValidator {
|
||||
private final Project project;
|
||||
|
||||
|
||||
@@ -30,10 +30,6 @@ import org.jetbrains.jet.plugin.project.AnalyzerFacadeWithCache;
|
||||
|
||||
import java.util.Collection;
|
||||
|
||||
/**
|
||||
* User: Alefas
|
||||
* Date: 07.02.12
|
||||
*/
|
||||
public class JetNameValidatorImpl extends JetNameValidator {
|
||||
private final PsiElement myContainer;
|
||||
private final PsiElement myAnchor;
|
||||
|
||||
@@ -24,10 +24,6 @@ import java.lang.ref.Reference;
|
||||
import java.lang.ref.SoftReference;
|
||||
import java.util.ResourceBundle;
|
||||
|
||||
/**
|
||||
* User: Alefas
|
||||
* Date: 25.01.12
|
||||
*/
|
||||
public class JetRefactoringBundle {
|
||||
private static Reference<ResourceBundle> ourBundle;
|
||||
|
||||
|
||||
@@ -26,10 +26,6 @@ import org.jetbrains.jet.plugin.refactoring.changeSignature.JetChangeSignatureHa
|
||||
import org.jetbrains.jet.plugin.refactoring.introduceVariable.JetIntroduceVariableHandler;
|
||||
import org.jetbrains.jet.plugin.refactoring.safeDelete.KotlinSafeDeleteProcessor;
|
||||
|
||||
/**
|
||||
* User: Alefas
|
||||
* Date: 25.01.12
|
||||
*/
|
||||
public class JetRefactoringSupportProvider extends RefactoringSupportProvider {
|
||||
@Override
|
||||
public boolean isSafeDeleteAvailable(PsiElement element) {
|
||||
|
||||
@@ -58,10 +58,6 @@ import java.awt.*;
|
||||
import java.util.*;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* User: Alefas
|
||||
* Date: 25.01.12
|
||||
*/
|
||||
public class JetRefactoringUtil {
|
||||
|
||||
private JetRefactoringUtil() {
|
||||
|
||||
-4
@@ -21,10 +21,6 @@ import com.intellij.openapi.project.Project;
|
||||
import org.jetbrains.jet.lang.psi.JetProperty;
|
||||
import org.jetbrains.jet.lang.psi.JetPsiFactory;
|
||||
|
||||
/**
|
||||
* User: Alefas
|
||||
* Date: 14.02.12
|
||||
*/
|
||||
public class JetChangePropertyActions {
|
||||
private JetChangePropertyActions() {
|
||||
}
|
||||
|
||||
-4
@@ -45,10 +45,6 @@ import java.awt.*;
|
||||
import java.awt.event.ActionEvent;
|
||||
import java.awt.event.ActionListener;
|
||||
|
||||
/**
|
||||
* User: Alefas
|
||||
* Date: 01.02.12
|
||||
*/
|
||||
public class JetInplaceVariableIntroducer extends InplaceVariableIntroducer<JetExpression> {
|
||||
|
||||
private final boolean myReplaceOccurrence;
|
||||
|
||||
-4
@@ -56,10 +56,6 @@ import org.jetbrains.jet.renderer.DescriptorRenderer;
|
||||
|
||||
import java.util.*;
|
||||
|
||||
/**
|
||||
* User: Alefas
|
||||
* Date: 25.01.12
|
||||
*/
|
||||
public class JetIntroduceVariableHandler extends JetIntroduceHandlerBase {
|
||||
|
||||
private static final String INTRODUCE_VARIABLE = JetRefactoringBundle.message("introduce.variable");
|
||||
|
||||
@@ -26,10 +26,6 @@ import org.jetbrains.jet.lexer.JetTokens;
|
||||
import org.jetbrains.jet.plugin.PluginTestCaseBase;
|
||||
import org.jetbrains.jet.plugin.project.CancelableResolveSession;
|
||||
|
||||
/**
|
||||
* User: Alexander Podkhalyuzin
|
||||
* Date: 24.01.12
|
||||
*/
|
||||
public class JetFunctionParameterInfoTest extends LightCodeInsightFixtureTestCase {
|
||||
public void testInheritedFunctions() {
|
||||
doTest();
|
||||
|
||||
@@ -26,10 +26,6 @@ import com.intellij.testFramework.fixtures.JavaCodeInsightTestFixture;
|
||||
import com.intellij.util.ArrayUtil;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
/**
|
||||
* User: Alexander Podkhalyuzin
|
||||
* Date: 24.01.12
|
||||
*/
|
||||
public class MockCreateParameterInfoContext implements CreateParameterInfoContext {
|
||||
private Object[] myItemsToShow = ArrayUtil.EMPTY_OBJECT_ARRAY;
|
||||
private PsiElement myHighlightedElement = null;
|
||||
|
||||
@@ -24,10 +24,6 @@ import java.awt.*;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Collections;
|
||||
|
||||
/**
|
||||
* User: Alexander Podkhalyuzin
|
||||
* Date: 24.01.12
|
||||
*/
|
||||
public class MockParameterInfoUIContext implements ParameterInfoUIContext {
|
||||
private final PsiElement myParameterOwner;
|
||||
private final int myCurrentParameterIndex;
|
||||
|
||||
@@ -25,10 +25,6 @@ import com.intellij.testFramework.fixtures.JavaCodeInsightTestFixture;
|
||||
import com.intellij.util.ArrayUtil;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
/**
|
||||
* User: Alexander Podkhalyuzin
|
||||
* Date: 24.01.12
|
||||
*/
|
||||
public class MockUpdateParameterInfoContext implements UpdateParameterInfoContext {
|
||||
private int myCurrentParameter = -1;
|
||||
private PsiFile myFile;
|
||||
|
||||
-4
@@ -24,10 +24,6 @@ import org.jetbrains.jet.lang.psi.JetFile;
|
||||
import org.jetbrains.jet.lexer.JetTokens;
|
||||
import org.jetbrains.jet.plugin.PluginTestCaseBase;
|
||||
|
||||
/**
|
||||
* User: Alefas
|
||||
* Date: 31.01.12
|
||||
*/
|
||||
public class JetIntroduceVariableTest extends LightCodeInsightFixtureTestCase {
|
||||
public void testClassBody() {
|
||||
doTest();
|
||||
|
||||
-4
@@ -30,10 +30,6 @@ import org.jetbrains.jet.plugin.refactoring.JetRefactoringUtil;
|
||||
|
||||
import java.util.Arrays;
|
||||
|
||||
/**
|
||||
* User: Alefas
|
||||
* Date: 07.02.12
|
||||
*/
|
||||
public class JetNameSuggesterTest extends LightCodeInsightFixtureTestCase {
|
||||
public void testArrayList() {
|
||||
doTest();
|
||||
|
||||
@@ -2,9 +2,6 @@ package test
|
||||
|
||||
import java.io.File
|
||||
|
||||
/**
|
||||
* User: ignatov
|
||||
*/
|
||||
public class Test() {
|
||||
class object {
|
||||
public fun isDir(parent: File): Boolean {
|
||||
|
||||
@@ -2,9 +2,6 @@
|
||||
package test;
|
||||
import java.io.File;
|
||||
|
||||
/**
|
||||
* User: ignatov
|
||||
*/
|
||||
public class Test {
|
||||
public static boolean isDir(File parent) {
|
||||
if (parent == null || !parent.exists()) {
|
||||
|
||||
-5
@@ -1,9 +1,4 @@
|
||||
package org.jetbrains
|
||||
/**
|
||||
* User: danielpenkin
|
||||
* Date: 06.05.12
|
||||
* Time: 22:53
|
||||
*/
|
||||
|
||||
fun main(args : Array<String>) {
|
||||
System.out?.println(getGreeting())
|
||||
|
||||
-5
@@ -4,11 +4,6 @@ import org.junit.Test;
|
||||
|
||||
import static junit.framework.Assert.assertEquals;
|
||||
|
||||
/**
|
||||
* User: danielpenkin
|
||||
* Date: 06.05.12
|
||||
* Time: 23:35
|
||||
*/
|
||||
public class HelloWorldJavaTest {
|
||||
|
||||
@Test
|
||||
|
||||
Reference in New Issue
Block a user