Skip to content

Commit 03bf952

Browse files
docs: remove author tags (#199)
Authors tags don't provide much use. Multiple authors will work on a file over time, just adding more people using tags seems counter-productive. Additionally any version control system will have the capability to track who created/modified/deleted a file.
1 parent 1d1ea2a commit 03bf952

File tree

25 files changed

+0
-64
lines changed

25 files changed

+0
-64
lines changed

libraries/analysis-javascript/lib/dependency/DependencyFactory.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,6 @@ import { DependencyVisitor } from "./DependencyVisitor";
2626

2727
/**
2828
* Dependency generator for targets.
29-
*
30-
* @author Dimitri Stallenberg
3129
*/
3230
export class DependencyFactory
3331
extends Factory

libraries/analysis-javascript/lib/target/TargetFactory.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,6 @@ import { TargetVisitor } from "./TargetVisitor";
3030

3131
/**
3232
* TargetFactory for Javascript.
33-
*
34-
* @author Dimitri Stallenberg
3533
*/
3634
export class TargetFactory
3735
extends Factory

libraries/analysis-javascript/lib/target/VisibilityType.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,5 @@
1818

1919
/**
2020
* Visibility Types.
21-
*
22-
* @author Dimitri Stallenberg
2321
*/
2422
export type VisibilityType = "public" | "private" | "protected";

libraries/analysis-javascript/lib/target/export/ExportFactory.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,6 @@ import { ExportVisitor } from "./ExportVisitor";
2626

2727
/**
2828
* ExportFactory for Javascript.
29-
*
30-
* @author Dimitri Stallenberg
3129
*/
3230
export class ExportFactory extends Factory {
3331
/**

libraries/analysis-javascript/lib/type/resolving/TypeModelFactory.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@ import { TypeModel } from "./TypeModel";
2323

2424
/**
2525
* Abstract TypeResolver class
26-
*
27-
* @author Dimitri Stallenberg
2826
*/
2927
export abstract class TypeModelFactory {
3028
/**

libraries/search-javascript/lib/testcase/sampling/JavaScriptTestCaseSampler.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,6 @@ import { SetterGenerator } from "./generators/action/SetterGenerator";
5151

5252
/**
5353
* JavaScriptRandomSampler class
54-
*
55-
* @author Dimitri Stallenberg
5654
*/
5755
export abstract class JavaScriptTestCaseSampler extends EncodingSampler<JavaScriptTestCase> {
5856
private _rootContext: RootContext;

libraries/search-javascript/lib/testcase/statements/Statement.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,6 @@ import { Encoding, EncodingSampler } from "@syntest/search";
2121

2222
import { ContextBuilder } from "../../testbuilding/ContextBuilder";
2323

24-
/**
25-
* @author Dimitri Stallenberg
26-
*/
2724
export abstract class Statement {
2825
private _variableIdentifier: string;
2926
private _typeIdentifier: string;

libraries/search-javascript/lib/testcase/statements/action/ConstantObject.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,6 @@ import { Decoding } from "../Statement";
2525

2626
import { ActionStatement } from "./ActionStatement";
2727

28-
/**
29-
* @author Dimitri Stallenberg
30-
*/
3128
export class ConstantObject extends ActionStatement {
3229
constructor(
3330
variableIdentifier: string,

libraries/search-javascript/lib/testcase/statements/action/FunctionCall.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,6 @@ import { Decoding, Statement } from "../Statement";
2525

2626
import { ActionStatement } from "./ActionStatement";
2727

28-
/**
29-
* @author Dimitri Stallenberg
30-
*/
3128
export class FunctionCall extends ActionStatement {
3229
/**
3330
* Constructor

libraries/search-javascript/lib/testcase/statements/action/Getter.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,6 @@ import { Decoding } from "../Statement";
2626
import { ClassActionStatement } from "./ClassActionStatement";
2727
import { ConstructorCall } from "./ConstructorCall";
2828

29-
/**
30-
* @author Dimitri Stallenberg
31-
*/
3229
export class Getter extends ClassActionStatement {
3330
/**
3431
* Constructor

0 commit comments

Comments
 (0)