c62df5671d474394dce9949bb0f3df2d447a3242
API/AdHocConfig.md
| ... | ... | @@ -76,11 +76,11 @@ public class CustomAdHocConfig : Izenda.AdHoc.FileSystemAdHocConfig |
| 76 | 76 | } |
| 77 | 77 | |
| 78 | 78 | // Gets a list of ReportInfo for all loadable reports stored in the storage. |
| 79 | - public override System.Collections.Generic.Dictionary FilteredListReportsDictionary() |
|
| 79 | + public override System.Collections.Generic.Dictionary<Izenda.AdHoc.ReportInfo, Izenda.AdHoc.ReportSet> FilteredListReportsDictionary() |
|
| 80 | 80 | { |
| 81 | 81 | ReportInfo[] reports = ListReports(); |
| 82 | 82 | Array.Sort(reports); |
| 83 | - Dictionary result = new Dictionary(); |
|
| 83 | + Dictionary<Izenda.AdHoc.ReportInfo, Izenda.AdHoc.ReportSet> result = new Dictionary<Izenda.AdHoc.ReportInfo, Izenda.AdHoc.ReportSet>(); |
|
| 84 | 84 | |
| 85 | 85 | foreach (ReportInfo info in reports) |
| 86 | 86 | { |