Skip to content

Commit 85000b1

Browse files
committed
Fixed dangling comment warning for copyright
1 parent a0dde08 commit 85000b1

File tree

119 files changed

+566
-565
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

119 files changed

+566
-565
lines changed

gen/com/intellij/lang/jsgraphql/GraphQLLexer.java

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gen/com/intellij/lang/jsgraphql/endpoint/doc/lexer/JSGraphQLEndpointDocLexer.java

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gen/com/intellij/lang/jsgraphql/endpoint/lexer/JSGraphQLEndpointLexer.java

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

resources/META-INF/plugin.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
/**
2+
/*
33
* Copyright (c) 2015-present, Jim Kynde Meyer
44
* All rights reserved.
55
*

src/grammars/GraphQLLexer.flex

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
/**
2-
* Copyright (c) 2018-present, Jim Kynde Meyer
3-
* All rights reserved.
4-
* <p>
5-
* This source code is licensed under the MIT license found in the
6-
* LICENSE file in the root directory of this source tree.
1+
/*
2+
* Copyright (c) 2015-present, Jim Kynde Meyer
3+
* All rights reserved.
4+
*
5+
* This source code is licensed under the MIT license found in the
6+
* LICENSE file in the root directory of this source tree.
77
*/
88
package com.intellij.lang.jsgraphql;
99

src/grammars/GraphQLParser.bnf

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
/**
2-
* Copyright (c) 2018-present, Jim Kynde Meyer
3-
* All rights reserved.
4-
* <p>
5-
* This source code is licensed under the MIT license found in the
6-
* LICENSE file in the root directory of this source tree.
1+
/*
2+
* Copyright (c) 2015-present, Jim Kynde Meyer
3+
* All rights reserved.
4+
*
5+
* This source code is licensed under the MIT license found in the
6+
* LICENSE file in the root directory of this source tree.
77
*/
88
{
99
generate=[names="long" tokenAccessors="no"]

src/grammars/JSGraphQLEndpointDocLexer.flex

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
/**
2-
* Copyright (c) 2015-present, Jim Kynde Meyer
3-
* All rights reserved.
4-
* <p>
5-
* This source code is licensed under the MIT license found in the
6-
* LICENSE file in the root directory of this source tree.
1+
/*
2+
* Copyright (c) 2015-present, Jim Kynde Meyer
3+
* All rights reserved.
4+
*
5+
* This source code is licensed under the MIT license found in the
6+
* LICENSE file in the root directory of this source tree.
77
*/
88
package com.intellij.lang.jsgraphql.endpoint.doc.lexer;
99

@@ -57,4 +57,4 @@ docText=[^\s]+
5757
<DOCUMENTATION> {
5858
{docText} { return DOCTEXT; }
5959
{WHITE_SPACE} { return com.intellij.psi.TokenType.WHITE_SPACE; }
60-
}
60+
}

src/grammars/JSGraphQLEndpointDocParser.bnf

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
/**
2-
* Copyright (c) 2015-present, Jim Kynde Meyer
3-
* All rights reserved.
4-
* <p>
5-
* This source code is licensed under the MIT license found in the
6-
* LICENSE file in the root directory of this source tree.
1+
/*
2+
* Copyright (c) 2015-present, Jim Kynde Meyer
3+
* All rights reserved.
4+
*
5+
* This source code is licensed under the MIT license found in the
6+
* LICENSE file in the root directory of this source tree.
77
*/
88
{
99

@@ -32,4 +32,4 @@ Document ::= Rule*
3232

3333
private Rule ::= Tag | docText
3434

35-
Tag ::= docName docValue {pin=1}
35+
Tag ::= docName docValue {pin=1}

src/grammars/JSGraphQLEndpointLexer.flex

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
/**
2-
* Copyright (c) 2015-present, Jim Kynde Meyer
3-
* All rights reserved.
4-
* <p>
5-
* This source code is licensed under the MIT license found in the
6-
* LICENSE file in the root directory of this source tree.
1+
/*
2+
* Copyright (c) 2015-present, Jim Kynde Meyer
3+
* All rights reserved.
4+
*
5+
* This source code is licensed under the MIT license found in the
6+
* LICENSE file in the root directory of this source tree.
77
*/
88
package com.intellij.lang.jsgraphql.endpoint.lexer;
99

src/grammars/JSGraphQLEndpointParser.bnf

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
/**
2-
* Copyright (c) 2015-present, Jim Kynde Meyer
3-
* All rights reserved.
4-
* <p>
5-
* This source code is licensed under the MIT license found in the
6-
* LICENSE file in the root directory of this source tree.
1+
/*
2+
* Copyright (c) 2015-present, Jim Kynde Meyer
3+
* All rights reserved.
4+
*
5+
* This source code is licensed under the MIT license found in the
6+
* LICENSE file in the root directory of this source tree.
77
*/
88
{
99

src/main/com/intellij/lang/jsgraphql/endpoint/JSGraphQLEndpointFileType.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/**
1+
/*
22
* Copyright (c) 2015-present, Jim Kynde Meyer
33
* All rights reserved.
44
*
@@ -46,4 +46,4 @@ public String getDefaultExtension() {
4646
public Icon getIcon() {
4747
return JSGraphQLIcons.Files.GraphQLSchema;
4848
}
49-
}
49+
}

src/main/com/intellij/lang/jsgraphql/endpoint/JSGraphQLEndpointLanguage.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/**
1+
/*
22
* Copyright (c) 2015-present, Jim Kynde Meyer
33
* All rights reserved.
44
*
@@ -16,4 +16,4 @@ public class JSGraphQLEndpointLanguage extends Language {
1616
private JSGraphQLEndpointLanguage() {
1717
super(LANGUAGE_ID);
1818
}
19-
}
19+
}

src/main/com/intellij/lang/jsgraphql/endpoint/JSGraphQLEndpointParserDefinition.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/**
1+
/*
22
* Copyright (c) 2015-present, Jim Kynde Meyer
33
* All rights reserved.
44
*
@@ -76,4 +76,4 @@ public SpaceRequirements spaceExistanceTypeBetweenTokens(ASTNode left, ASTNode r
7676
public PsiElement createElement(ASTNode node) {
7777
return JSGraphQLEndpointTokenTypes.Factory.createElement(node);
7878
}
79-
}
79+
}

src/main/com/intellij/lang/jsgraphql/endpoint/JSGraphQLEndpointSpellcheckingStrategy.java

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
/**
2-
* Copyright (c) 2015-present, Jim Kynde Meyer
3-
* All rights reserved.
4-
* <p>
5-
* This source code is licensed under the MIT license found in the
6-
* LICENSE file in the root directory of this source tree.
1+
/*
2+
* Copyright (c) 2015-present, Jim Kynde Meyer
3+
* All rights reserved.
4+
*
5+
* This source code is licensed under the MIT license found in the
6+
* LICENSE file in the root directory of this source tree.
77
*/
88
package com.intellij.lang.jsgraphql.endpoint;
99

src/main/com/intellij/lang/jsgraphql/endpoint/JSGraphQLEndpointTodoIndexer.java

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
/**
2-
* Copyright (c) 2015-present, Jim Kynde Meyer
3-
* All rights reserved.
4-
* <p>
5-
* This source code is licensed under the MIT license found in the
6-
* LICENSE file in the root directory of this source tree.
1+
/*
2+
* Copyright (c) 2015-present, Jim Kynde Meyer
3+
* All rights reserved.
4+
*
5+
* This source code is licensed under the MIT license found in the
6+
* LICENSE file in the root directory of this source tree.
77
*/
88
package com.intellij.lang.jsgraphql.endpoint;
99

src/main/com/intellij/lang/jsgraphql/endpoint/JSGraphQLEndpointTokenType.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/**
1+
/*
22
* Copyright (c) 2015-present, Jim Kynde Meyer
33
* All rights reserved.
44
*

src/main/com/intellij/lang/jsgraphql/endpoint/JSGraphQLEndpointTokenTypesSets.java

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
/**
2-
* Copyright (c) 2015-present, Jim Kynde Meyer
3-
* All rights reserved.
4-
* <p>
5-
* This source code is licensed under the MIT license found in the
6-
* LICENSE file in the root directory of this source tree.
1+
/*
2+
* Copyright (c) 2015-present, Jim Kynde Meyer
3+
* All rights reserved.
4+
*
5+
* This source code is licensed under the MIT license found in the
6+
* LICENSE file in the root directory of this source tree.
77
*/
88
package com.intellij.lang.jsgraphql.endpoint;
99

src/main/com/intellij/lang/jsgraphql/endpoint/doc/JSGraphQLEndpointDocFileType.java

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
/**
2-
* Copyright (c) 2015-present, Jim Kynde Meyer
3-
* All rights reserved.
4-
* <p>
5-
* This source code is licensed under the MIT license found in the
6-
* LICENSE file in the root directory of this source tree.
1+
/*
2+
* Copyright (c) 2015-present, Jim Kynde Meyer
3+
* All rights reserved.
4+
*
5+
* This source code is licensed under the MIT license found in the
6+
* LICENSE file in the root directory of this source tree.
77
*/
88
package com.intellij.lang.jsgraphql.endpoint.doc;
99

@@ -46,4 +46,4 @@ public String getDefaultExtension() {
4646
public Icon getIcon() {
4747
return JSGraphQLIcons.Files.GraphQLSchema;
4848
}
49-
}
49+
}
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
/**
2-
* Copyright (c) 2015-present, Jim Kynde Meyer
3-
* All rights reserved.
4-
* <p>
5-
* This source code is licensed under the MIT license found in the
6-
* LICENSE file in the root directory of this source tree.
1+
/*
2+
* Copyright (c) 2015-present, Jim Kynde Meyer
3+
* All rights reserved.
4+
*
5+
* This source code is licensed under the MIT license found in the
6+
* LICENSE file in the root directory of this source tree.
77
*/
88
package com.intellij.lang.jsgraphql.endpoint.doc;
99

@@ -17,4 +17,4 @@ public class JSGraphQLEndpointDocLanguage extends Language implements Injectable
1717
private JSGraphQLEndpointDocLanguage() {
1818
super(LANGUAGE_ID);
1919
}
20-
}
20+
}

src/main/com/intellij/lang/jsgraphql/endpoint/doc/JSGraphQLEndpointDocParserDefinition.java

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
/**
2-
* Copyright (c) 2015-present, Jim Kynde Meyer
3-
* All rights reserved.
4-
* <p>
5-
* This source code is licensed under the MIT license found in the
6-
* LICENSE file in the root directory of this source tree.
1+
/*
2+
* Copyright (c) 2015-present, Jim Kynde Meyer
3+
* All rights reserved.
4+
*
5+
* This source code is licensed under the MIT license found in the
6+
* LICENSE file in the root directory of this source tree.
77
*/
88
package com.intellij.lang.jsgraphql.endpoint.doc;
99

@@ -74,4 +74,4 @@ public SpaceRequirements spaceExistanceTypeBetweenTokens(ASTNode left, ASTNode r
7474
public PsiElement createElement(ASTNode node) {
7575
return JSGraphQLEndpointDocTokenTypes.Factory.createElement(node);
7676
}
77-
}
77+
}

src/main/com/intellij/lang/jsgraphql/endpoint/doc/JSGraphQLEndpointDocTokenType.java

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
/**
2-
* Copyright (c) 2015-present, Jim Kynde Meyer
3-
* All rights reserved.
4-
* <p>
5-
* This source code is licensed under the MIT license found in the
6-
* LICENSE file in the root directory of this source tree.
1+
/*
2+
* Copyright (c) 2015-present, Jim Kynde Meyer
3+
* All rights reserved.
4+
*
5+
* This source code is licensed under the MIT license found in the
6+
* LICENSE file in the root directory of this source tree.
77
*/
88
package com.intellij.lang.jsgraphql.endpoint.doc;
99

src/main/com/intellij/lang/jsgraphql/endpoint/doc/ide/annotator/JSGraphQLEndpointDocHighlightAnnotator.java

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
/**
2-
* Copyright (c) 2015-present, Jim Kynde Meyer
3-
* All rights reserved.
4-
* <p>
5-
* This source code is licensed under the MIT license found in the
6-
* LICENSE file in the root directory of this source tree.
1+
/*
2+
* Copyright (c) 2015-present, Jim Kynde Meyer
3+
* All rights reserved.
4+
*
5+
* This source code is licensed under the MIT license found in the
6+
* LICENSE file in the root directory of this source tree.
77
*/
88
package com.intellij.lang.jsgraphql.endpoint.doc.ide.annotator;
99

src/main/com/intellij/lang/jsgraphql/endpoint/doc/ide/completion/JSGraphQLEndpointDocCompletionContributor.java

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
/**
2-
* Copyright (c) 2015-present, Jim Kynde Meyer
3-
* All rights reserved.
4-
* <p>
5-
* This source code is licensed under the MIT license found in the
6-
* LICENSE file in the root directory of this source tree.
1+
/*
2+
* Copyright (c) 2015-present, Jim Kynde Meyer
3+
* All rights reserved.
4+
*
5+
* This source code is licensed under the MIT license found in the
6+
* LICENSE file in the root directory of this source tree.
77
*/
88
package com.intellij.lang.jsgraphql.endpoint.doc.ide.completion;
99

@@ -86,4 +86,4 @@ protected void addCompletions(@NotNull final CompletionParameters parameters, Pr
8686

8787
}
8888

89-
}
89+
}

0 commit comments

Comments
 (0)