diff --git a/src/services/formatting/formatting.ts b/src/services/formatting/formatting.ts
index 107251aabda..22f90a0cdee 100644
--- a/src/services/formatting/formatting.ts
+++ b/src/services/formatting/formatting.ts
@@ -1,5 +1,6 @@
///
///
+///
///
module ts.formatting {
diff --git a/src/services/formatting/references.ts b/src/services/formatting/references.ts
index 3d19b33d821..b421424a61b 100644
--- a/src/services/formatting/references.ts
+++ b/src/services/formatting/references.ts
@@ -24,5 +24,4 @@
///
///
///
-///
-///
\ No newline at end of file
+///
\ No newline at end of file
diff --git a/src/services/formatting/tokenSpan.ts b/src/services/formatting/tokenSpan.ts
deleted file mode 100644
index 1d8173a8227..00000000000
--- a/src/services/formatting/tokenSpan.ts
+++ /dev/null
@@ -1,24 +0,0 @@
-//
-// Copyright (c) Microsoft Corporation. All rights reserved.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-///
-
-module ts.formatting {
- export class TokenSpan extends TextSpan {
- constructor(public kind: SyntaxKind, start: number, length: number) {
- super(start, length);
- }
- }
-}
\ No newline at end of file