Browse Source

Fix namespace

Billy Barrow 4 weeks ago
parent
commit
b0cc9d8590
1 changed files with 1 additions and 3 deletions
  1. 1 3
      src/lib/DataStructures/Catalogue.vala

+ 1 - 3
src/lib/DataStructures/Catalogue.vala

@@ -1,6 +1,4 @@
-using Invercargill.DataStructures;
-
-namespace Invercargill {
+namespace Invercargill.DataStructures {
 
     public class Catalogue<TKey, TValue> : Enumerable<Grouping<TKey, TValue>>, Lot<Grouping<TKey, TValue>>, ReadOnlyCategoryIndex<TKey, TValue>, CategoryIndex<TKey, TValue> {