Free cookie consent management tool by TermsFeed Policy Generator

Changeset 1443


Ignore:
Timestamp:
03/27/09 13:25:26 (15 years ago)
Author:
msteinbi
Message:

class is public now, initialization of list (#546)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.PluginInfrastructure/CachedPlugin.cs

    r1439 r1443  
    2525
    2626namespace HeuristicLab.PluginInfrastructure {
    27   class CachedPlugin : PluginInfo {
     27  public class CachedPlugin : PluginInfo {
     28   
     29    private List<byte[]> pluginFiles = new List<byte[]>();
    2830    /// <summary>
    2931    /// stores the plugin files in a list of byte arrays
    3032    /// </summary>
    31     public List<byte[]> PluginFiles { get; set; }
     33    public List<byte[]> PluginFiles {
     34      get { return pluginFiles; }
     35    }
    3236  }
    3337}
Note: See TracChangeset for help on using the changeset viewer.