-
-
-
-
-
-
\ No newline at end of file
diff --git a/Groovy/.idea/compiler.xml b/Groovy/.idea/compiler.xml
deleted file mode 100644
index 96cc43ef..00000000
--- a/Groovy/.idea/compiler.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Groovy/.idea/copyright/profiles_settings.xml b/Groovy/.idea/copyright/profiles_settings.xml
deleted file mode 100644
index e7bedf33..00000000
--- a/Groovy/.idea/copyright/profiles_settings.xml
+++ /dev/null
@@ -1,3 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/Groovy/.idea/misc.xml b/Groovy/.idea/misc.xml
deleted file mode 100644
index c6d8fb73..00000000
--- a/Groovy/.idea/misc.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Groovy/.idea/modules.xml b/Groovy/.idea/modules.xml
deleted file mode 100644
index c1a39855..00000000
--- a/Groovy/.idea/modules.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/dart/bin/main.dart b/dart/bin/main.dart
deleted file mode 100644
index 240994c5..00000000
--- a/dart/bin/main.dart
+++ /dev/null
@@ -1,35 +0,0 @@
-import 'package:gilded_rose/gilded_rose.dart';
-
-main(List args) {
- print("OMGHAI!");
-
- var items = [
- new Item("+5 Dexterity Vest", 10, 20),
- new Item("Aged Brie", 2, 0),
- new Item("Elixir of the Mongoose", 5, 7),
- new Item("Sulfuras, Hand of Ragnaros", 0, 80),
- new Item("Sulfuras, Hand of Ragnaros", -1, 80),
- new Item("Backstage passes to a TAFKAL80ETC concert", 15, 20),
- new Item("Backstage passes to a TAFKAL80ETC concert", 10, 49),
- new Item("Backstage passes to a TAFKAL80ETC concert", 5, 49),
- // this conjured item does not work properly yet
- new Item("Conjured Mana Cake", 3, 6)
- ];
-
- GildedRose app = new GildedRose(items);
-
- int days = 2;
- if (args.length > 0) {
- days = int.parse(args[0]) + 1;
- }
-
- for (int i = 0; i < days; i++) {
- print("-------- day $i --------");
- print("name, sellIn, quality");
- for (var item in items) {
- print(item);
- }
- print('');
- app.updateQuality();
- }
-}