[longomatch] Fix ITemplateProvider interface



commit 801d795d2aaf2bff3ca62abc4231b3603c483c16
Author: Andoni Morales Alastruey <ylatuya gmail com>
Date:   Tue Mar 17 21:12:10 2015 +0100

    Fix ITemplateProvider interface

 LongoMatch.Core/Interfaces/ITemplates.cs |    6 ++----
 1 files changed, 2 insertions(+), 4 deletions(-)
---
diff --git a/LongoMatch.Core/Interfaces/ITemplates.cs b/LongoMatch.Core/Interfaces/ITemplates.cs
index 64024e3..01c5420 100644
--- a/LongoMatch.Core/Interfaces/ITemplates.cs
+++ b/LongoMatch.Core/Interfaces/ITemplates.cs
@@ -29,8 +29,6 @@ namespace LongoMatch.Core.Interfaces
 
        public interface ITemplateProvider
        {
-               void CheckDefaultTemplate ();
-
                List<string> TemplatesNames { get; }
 
                bool Exists (string name);
@@ -50,9 +48,9 @@ namespace LongoMatch.Core.Interfaces
 
                T LoadFile (string filename);
 
-               void Save (ITemplate template);
+               void Save (T template);
 
-               void Update (ITemplate template);
+               void Update (T template);
 
                void Register (T template);
        }


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]