Billy Barrow il y a 1 semaine
Parent
commit
282f43ce45
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 2 2
      src/lib/Interfaces/ReadOnlyCategoryIndex.vala

+ 2 - 2
src/lib/Interfaces/ReadOnlyCategoryIndex.vala

@@ -25,8 +25,8 @@ namespace Invercargill {
             return null;
         }
 
-        public virtual TValue @get(TKey key) throws IndexError {
-            TValue value;
+        public virtual Grouping<TKey, TValue> @get(TKey key) throws IndexError {
+            Grouping<TKey, TValue> value;
             if(try_get(key, out value)) {
                 return value;
             }