Skip to content
This repository has been archived by the owner on Jan 17, 2022. It is now read-only.

Commit

Permalink
Merge pull request #100 from MninaTB/refactor/kommentare
Browse files Browse the repository at this point in the history
refactor(comments): author line entfernt
  • Loading branch information
miyunari authored Jun 7, 2021
2 parents 4c8adfb + 7b4ffe9 commit 66d7632
Show file tree
Hide file tree
Showing 10 changed files with 2 additions and 22 deletions.
2 changes: 0 additions & 2 deletions src/controller/Controller.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@
* Controller.java Interface Klasse wird von Controllern implementiert um
* angezeigt werden zu können.
*
* @author Nina
* @since 24-05-2021
*/
public interface Controller {
void init(Share share);
Expand Down
1 change: 0 additions & 1 deletion src/controller/Game.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
* Game.java Game ist ein Controller zur verwaltung von aktionen des game
* screens.
*
* @author Niklas E.
*
*/
public class Game implements Controller {
Expand Down
4 changes: 1 addition & 3 deletions src/controller/Screen.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
*
* Screen.java Enum zum identifizieren verschiedener screens.
*
* @author Nina
* @since 24-05-2021
*/
public enum Screen {
SCREEN_START("start"),
Expand Down Expand Up @@ -38,4 +36,4 @@ public enum Screen {
public String toString() {
return this.text;
}
}
}
2 changes: 0 additions & 2 deletions src/controller/Start.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@
* Start.java Start ist ein Controller zur verwaltung von aktionen des start
* screens.
*
* @author Nina, Niklas E.
* @since 24-05-2021
*/
public class Start implements Controller {

Expand Down
2 changes: 0 additions & 2 deletions src/controller/Switcher.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@
* Ein next() call ueberfuehrt ein Objekt in den naechsten
* Zustand.
*
* @author Nina
* @since 24-05-2021
*/
public interface Switcher {
void next(Screen s);
Expand Down
5 changes: 1 addition & 4 deletions src/questions/QuestionDB.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@
import model.Question;
import model.Category;

/**
* @author Roger
*/

import java.sql.*;
import java.util.ArrayList;
Expand Down Expand Up @@ -487,4 +484,4 @@ public int saveCategory(Category category) {
}
return 0;
}
}
}
2 changes: 0 additions & 2 deletions src/ui/Registry.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@
/**
* Registry wird zur verwaltung von Screens genutzt.
*
* @author nina
*
*/
public class Registry {
private HashMap<Screen, Controller> intern;
Expand Down
2 changes: 0 additions & 2 deletions src/ui/Router.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@
* Wird genutzt um verschiedene JPanel zu laden. Ein Screen wechsel ist
* threadsafe.
*
* @author nina
*
*/
public class Router {

Expand Down
2 changes: 0 additions & 2 deletions src/view/Game.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@
* Game ist ein view, welches JComponents
* haelt und anbietet.
*
* @author Niklas E.
*
*/
public class Game {
private JPanel content;
Expand Down
2 changes: 0 additions & 2 deletions src/view/Start.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@
* Start ist ein view, welches JComponents
* haelt und anbietet.
*
* @author nina, niklas e.
*
*/
public class Start {
private JPanel content;
Expand Down

0 comments on commit 66d7632

Please sign in to comment.