Removed @author javadocs from code.
This commit is contained in:
@@ -16,9 +16,6 @@
|
||||
|
||||
package org.jetbrains.jet.grammar;
|
||||
|
||||
/**
|
||||
* @author abreslav
|
||||
*/
|
||||
public class Annotation extends Token {
|
||||
public Annotation(CharSequence text, String fileName, int line) {
|
||||
super(text, fileName, line);
|
||||
|
||||
@@ -16,9 +16,6 @@
|
||||
|
||||
package org.jetbrains.jet.grammar;
|
||||
|
||||
/**
|
||||
* @author abreslav
|
||||
*/
|
||||
public class Comment extends Token {
|
||||
public Comment(CharSequence text, String fileName, int line) {
|
||||
super(text, fileName, line);
|
||||
|
||||
@@ -33,9 +33,6 @@ import java.util.List;
|
||||
import java.util.regex.Matcher;
|
||||
import java.util.regex.Pattern;
|
||||
|
||||
/**
|
||||
* @author abreslav
|
||||
*/
|
||||
public class ConfluenceHyperlinksGenerator {
|
||||
|
||||
private static final String GRAMMAR_EXTENSION = "grm";
|
||||
|
||||
@@ -16,9 +16,6 @@
|
||||
|
||||
package org.jetbrains.jet.grammar;
|
||||
|
||||
/**
|
||||
* @author abreslav
|
||||
*/
|
||||
public class Declaration extends Token {
|
||||
private final String name;
|
||||
|
||||
|
||||
@@ -16,9 +16,6 @@
|
||||
|
||||
package org.jetbrains.jet.grammar;
|
||||
|
||||
/**
|
||||
* @author abreslav
|
||||
*/
|
||||
public class DocComment extends Token {
|
||||
public DocComment(CharSequence text, String fileName, int line) {
|
||||
super(text, fileName, line);
|
||||
|
||||
@@ -16,9 +16,6 @@
|
||||
|
||||
package org.jetbrains.jet.grammar;
|
||||
|
||||
/**
|
||||
* @author abreslav
|
||||
*/
|
||||
public class Identifier extends Token {
|
||||
private final String name;
|
||||
|
||||
|
||||
@@ -16,9 +16,6 @@
|
||||
|
||||
package org.jetbrains.jet.grammar;
|
||||
|
||||
/**
|
||||
* @author abreslav
|
||||
*/
|
||||
public class Other extends Token {
|
||||
public Other(CharSequence text, String fileName, int line) {
|
||||
super(text, fileName, line);
|
||||
|
||||
@@ -16,9 +16,6 @@
|
||||
|
||||
package org.jetbrains.jet.grammar;
|
||||
|
||||
/**
|
||||
* @author abreslav
|
||||
*/
|
||||
public class StringToken extends Token {
|
||||
public StringToken(CharSequence text, String fileName, int line) {
|
||||
super(text, fileName, line);
|
||||
|
||||
@@ -16,9 +16,6 @@
|
||||
|
||||
package org.jetbrains.jet.grammar;
|
||||
|
||||
/**
|
||||
* @author abreslav
|
||||
*/
|
||||
public class SymbolToken extends Token {
|
||||
public SymbolToken(CharSequence text, String fileName, int line) {
|
||||
super(text, fileName, line);
|
||||
|
||||
@@ -16,9 +16,6 @@
|
||||
|
||||
package org.jetbrains.jet.grammar;
|
||||
|
||||
/**
|
||||
* @author abreslav
|
||||
*/
|
||||
public class Token {
|
||||
private final String fileName;
|
||||
private final CharSequence text;
|
||||
|
||||
@@ -16,9 +16,6 @@
|
||||
|
||||
package org.jetbrains.jet.grammar;
|
||||
|
||||
/**
|
||||
* @author abreslav
|
||||
*/
|
||||
public class WhiteSpace extends Token {
|
||||
public WhiteSpace(CharSequence text, String fileName, int line) {
|
||||
super(text, fileName, line);
|
||||
|
||||
Reference in New Issue
Block a user