コード例 #1
0
ファイル: PersistentPatch.cs プロジェクト: penartur/FLocal
 public PersistentPatch(AbstractCommand command, HashSet<string> restrictToEnvironments, Context context)
     : base(restrictToEnvironments, context)
 {
     this.command = command;
     throw new NotImplementedException("Persistent patches are not implemented yet");
 }
コード例 #2
0
ファイル: AtomicPatch.cs プロジェクト: penartur/FLocal
 public AtomicPatch(AbstractCommand[] commands, bool isStrictCommandSet, HashSet<string> restrictToEnvironments, Context context)
     : base(restrictToEnvironments, context)
 {
     this.commands = commands;
     this.isStrictCommandSet = isStrictCommandSet;
 }