summaryrefslogtreecommitdiff
path: root/Source/DafnyExtension/BufferIdleEventUtil.cs
diff options
context:
space:
mode:
authorGravatar wuestholz <unknown>2013-06-11 10:24:31 -0700
committerGravatar wuestholz <unknown>2013-06-11 10:24:31 -0700
commit4314d2bf8634ddc573c4f0a4266a6771cb5eb696 (patch)
tree56dfaee0e35b989e8b7a600dd5c33119054f3fb5 /Source/DafnyExtension/BufferIdleEventUtil.cs
parente2508e12bf24a84f731884fcbd8f5f128dbf9f9a (diff)
DafnyExtension: Did some refactoring.
Diffstat (limited to 'Source/DafnyExtension/BufferIdleEventUtil.cs')
-rw-r--r--Source/DafnyExtension/BufferIdleEventUtil.cs11
1 files changed, 7 insertions, 4 deletions
diff --git a/Source/DafnyExtension/BufferIdleEventUtil.cs b/Source/DafnyExtension/BufferIdleEventUtil.cs
index 1aea1385..8a1ad0ed 100644
--- a/Source/DafnyExtension/BufferIdleEventUtil.cs
+++ b/Source/DafnyExtension/BufferIdleEventUtil.cs
@@ -1,17 +1,19 @@
//***************************************************************************
// Copyright © 2010 Microsoft Corporation. All Rights Reserved.
-// This code released under the terms of the
+// This code released under the terms of the
// Microsoft Public License (MS-PL, http://opensource.org/licenses/ms-pl.html.)
//***************************************************************************
+
+
using System;
using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using Microsoft.VisualStudio.Text;
using System.Windows.Threading;
+using Microsoft.VisualStudio.Text;
+
namespace DafnyLanguage
{
+
/// <summary>
/// Handy reusable utility to listen for change events on the associated buffer, but
/// only pass these along to a set of listeners when the user stops typing for a half second
@@ -152,4 +154,5 @@ namespace DafnyLanguage
#endregion
}
+
}