Skip to content

Commit 3d567e5

Browse files
committed
newState -> oldState
typo
1 parent f477b31 commit 3d567e5

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

AvansDevOps/Domain/PartialProductSprint.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ internal void SetState(IPartialProductSprintState sprintState)
5151
this.sprintState = sprintState;
5252
}
5353

54-
public override void Notify(Sprint sprint, ISprintState newState)
54+
public override void Notify(Sprint sprint, ISprintState oldState)
5555
{
5656
throw new NotImplementedException();
5757
}

AvansDevOps/Domain/ReleaseSprint.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ internal void SetState(IReleaseSprintState sprintState)
5555
this.sprintState = sprintState;
5656
}
5757

58-
public override void Notify(Sprint sprint, ISprintState newState)
58+
public override void Notify(Sprint sprint, ISprintState oldState)
5959
{
6060
throw new NotImplementedException();
6161
}

AvansDevOps/Domain/Sprint.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,13 +54,13 @@ public void Unsubscribe(ISprintObserver observer)
5454
}
5555

5656
// moeten dit abstacte methodes zijn of gewoon normale methodes?
57-
//public void Notify(Sprint sprint, ISprintState newState)
57+
//public void Notify(Sprint sprint, ISprintState oldState)
5858
//{
5959
// foreach (IBacklogItemObserver observer in this.observers)
6060
// {
6161
// observer.Update(sprint, oldState);
6262
// }
6363
//}
64-
public abstract void Notify(Sprint sprint, ISprintState newState);
64+
public abstract void Notify(Sprint sprint, ISprintState oldState);
6565
}
6666
}

0 commit comments

Comments
 (0)