diff --git a/.classpath b/.classpath
deleted file mode 100644
index 6220d0d..0000000
--- a/.classpath
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
-
-
-
-
diff --git a/.gitignore b/.gitignore
deleted file mode 100644
index 4c8fd93..0000000
--- a/.gitignore
+++ /dev/null
@@ -1,62 +0,0 @@
-# ---> Eclipse
-.metadata
-bin/
-tmp/
-*.tmp
-*.bak
-*.swp
-*~.nib
-local.properties
-.settings/
-.loadpath
-.recommenders
-
-# External tool builders
-.externalToolBuilders/
-
-# Locally stored "Eclipse launch configurations"
-*.launch
-
-# PyDev specific (Python IDE for Eclipse)
-*.pydevproject
-
-# CDT-specific (C/C++ Development Tooling)
-.cproject
-
-# CDT- autotools
-.autotools
-
-# Java annotation processor (APT)
-.factorypath
-
-# PDT-specific (PHP Development Tools)
-.buildpath
-
-# sbteclipse plugin
-.target
-
-# Tern plugin
-.tern-project
-
-# TeXlipse plugin
-.texlipse
-
-# STS (Spring Tool Suite)
-.springBeans
-
-# Code Recommenders
-.recommenders/
-
-# Annotation Processing
-.apt_generated/
-.apt_generated_test/
-
-# Scala IDE specific (Scala & Java development for Eclipse)
-.cache-main
-.scala_dependencies
-.worksheet
-
-# Uncomment this line if you wish to ignore the project description file.
-# Typically, this file would be tracked if it contains build/dependency configurations:
-#.project
-
diff --git a/.project b/.project
deleted file mode 100644
index da18560..0000000
--- a/.project
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
- MeineArrayList
-
-
-
-
-
- org.eclipse.jdt.core.javabuilder
-
-
-
-
-
- org.eclipse.jdt.core.javanature
-
-
diff --git a/README.md b/README.md
index a2536fb..215aa6c 100644
--- a/README.md
+++ b/README.md
@@ -1,7 +1,4 @@
# PR1_Aufgabensammlung_Erstelle_Arraylist
-In diesem Repo finden Sie die Aufgabenstellung mit Tests.
-Sie müssen lediglich die Klasse MeineArrayList fertig implementieren.
-Mit Hilfe der Tests wissen Sie, ob die Aufgabe korrekt ist.
# Aufgabe
Implementieren Sie die Klasse MeineArrayList so, dass sie die Grundlegenden Funktionen einer ArrayList hat ohne ArrayList<> in der Klasse zu verwenden.
diff --git a/src/de/hs_mannheim/MeineArrayList/MeineArrayList.java b/src/de/hs_mannheim/MeineArrayList/MeineArrayList.java
deleted file mode 100644
index 7c5a482..0000000
--- a/src/de/hs_mannheim/MeineArrayList/MeineArrayList.java
+++ /dev/null
@@ -1,72 +0,0 @@
-package de.hs_mannheim.MeineArrayList;
-
-public class MeineArrayList {
- //Todo: Implementieren
-
- public MeineArrayList() {
- //Todo: Implementieren
- }
-
- public void add(String n){
- //Todo: Implementieren
- }
-
- public Boolean add(int index, String n){
- //Todo: Implementieren
- return false;
- }
-
- public void addAll(MeineArrayList liste){
- //Todo: Implementieren
- }
-
- public Boolean addAll(int index, MeineArrayList liste){
- //Todo: Implementieren
- return false;
- }
-
- public void clear(){
- //Todo: Implementieren
- }
-
- public Boolean contains(String s){
- //Todo: Implementieren
- return false;
- }
-
- public String get(int index){
- //Todo: Implementieren
- return "";
- }
-
- public int indexOf(String s){
- //Todo: Implementieren
- return -1;
- }
-
- public Boolean isEmpty(){
- //Todo: Implementieren
- return false;
- }
-
- public String remove(int index){
- //Todo: Implementieren
- return "";
- }
-
- public Boolean set(int index, String s){
- //Todo: Implementieren
- return false;
- }
-
- public int size(){
- //Todo: Implementieren
- return -1;
- }
-
- public String[] toArray(){
- //Todo: Implementieren
- return new String[0];
- }
-
-}
diff --git a/src/de/hs_mannheim/MeineArrayList/MeineArrayList_Test.java b/src/de/hs_mannheim/MeineArrayList/MeineArrayList_Test.java
deleted file mode 100644
index 8c1af77..0000000
--- a/src/de/hs_mannheim/MeineArrayList/MeineArrayList_Test.java
+++ /dev/null
@@ -1,13 +0,0 @@
-package de.hs_mannheim.MeineArrayList;
-
-import static org.junit.jupiter.api.Assertions.*;
-
-import org.junit.jupiter.api.Test;
-
-class MeineArrayList_Test {
-
- @Test
- void addGetTests() {
- }
-
-}