diff --git a/.idea/misc.xml b/.idea/misc.xml
index b573818..6bc01a8 100644
--- a/.idea/misc.xml
+++ b/.idea/misc.xml
@@ -1,6 +1,6 @@
-
+
\ No newline at end of file
diff --git a/src/ch/zhaw/catan/Road.java b/src/ch/zhaw/catan/Road.java
index 730b149..ad13a93 100644
--- a/src/ch/zhaw/catan/Road.java
+++ b/src/ch/zhaw/catan/Road.java
@@ -2,8 +2,6 @@ package ch.zhaw.catan;
import java.awt.Point;
-/// TODO: 09/12/2021 Java Doc
-
/**
* sub Class of Structure
* Can be saved in Siedler Board on Edges.
diff --git a/src/ch/zhaw/catan/Settlement.java b/src/ch/zhaw/catan/Settlement.java
index d926308..4fc1da4 100644
--- a/src/ch/zhaw/catan/Settlement.java
+++ b/src/ch/zhaw/catan/Settlement.java
@@ -5,6 +5,8 @@ import java.awt.Point;
/**
* Sub Class of Structure and Super Class of City
* Can be saved in Siedler Board on a corner
+ *
+ * @author Andrin Fassbind, Roman Schenk
*/
public class Settlement extends Structure {
@@ -17,6 +19,8 @@ public class Settlement extends Structure {
}
/**
+ * This Methode Returns the Position of the Settlement
+ *
* @return the datafield position
*/
public Point getPosition() {
diff --git a/src/ch/zhaw/catan/SiedlerBoard.java b/src/ch/zhaw/catan/SiedlerBoard.java
index cd7ceb0..ce3ea15 100644
--- a/src/ch/zhaw/catan/SiedlerBoard.java
+++ b/src/ch/zhaw/catan/SiedlerBoard.java
@@ -11,7 +11,6 @@ import java.util.HashSet;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
-//TODO Enhance JavaDoc
/**
* Subclass of HexBoard
@@ -22,7 +21,6 @@ public class SiedlerBoard extends HexBoard fields = new HashMap<>();