Skip to content

Commit

Permalink
Fixes #27 make variable protected
Browse files Browse the repository at this point in the history
  • Loading branch information
msevestre committed Nov 28, 2019
1 parent ab23fdb commit 0cf2ad3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/OSPSuite.Utility/Events/ProgressUpdater.cs
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ public interface IProgressUpdater : IDisposable
public class ProgressUpdater : IProgressUpdater
{
private readonly IEventPublisher _eventPublisher;
private int _numberOfIterations;
private int _currentIteration;
protected int _numberOfIterations;
protected int _currentIteration;

public ProgressUpdater(IEventPublisher eventPublisher)
{
Expand Down

0 comments on commit 0cf2ad3

Please sign in to comment.