@@ -14,7 +14,7 @@ namespace SIL.FieldWorks.WordWorks.Parser
1414 /// </summary>
1515 public sealed class TaskReport : IDisposable
1616 {
17- public enum TaskPhase { Started , Working , Finished , ErrorEncountered } ;
17+ public enum TaskPhase { Started , Finished , ErrorEncountered } ;
1818
1919 private readonly Action < TaskReport > m_taskUpdate ;
2020 private List < TaskReport > m_subTasks ;
@@ -23,7 +23,6 @@ public enum TaskPhase {Started, Working, Finished, ErrorEncountered};
2323 private long m_finish ;
2424 private TaskPhase m_phase ;
2525 private TaskReport m_owningTask ;
26- private string m_notificationMessage ;
2726 private bool m_isInDispose ; // ture if we're in the dispose method
2827 /// <summary>
2928 /// this was added to hold the results of a trace request
@@ -156,7 +155,6 @@ private void Dispose(bool disposing)
156155 m_owningTask = null ;
157156 m_details = null ;
158157 m_description = null ;
159- m_notificationMessage = null ;
160158 m_subTasks = null ;
161159
162160 m_isDisposed = true ;
@@ -273,28 +271,6 @@ private void InformListeners(TaskReport task)
273271 m_owningTask . InformListeners ( this ) ;
274272 }
275273
276- /// <summary>
277- /// a message to pass to the client which is not quite an error, but which warrants telling the user in a
278- /// non intrusive fashion.
279- /// </summary>
280- public string NotificationMessage
281- {
282- get
283- {
284- CheckDisposed ( ) ;
285-
286- return m_notificationMessage ;
287- }
288- set
289- {
290- CheckDisposed ( ) ;
291-
292- m_notificationMessage = value ;
293- if ( value != null )
294- InformListeners ( TaskPhase . Working ) ;
295- }
296- }
297-
298274 public TaskPhase Phase
299275 {
300276 get
0 commit comments