Skip to content

Commit

Permalink
Merge pull request #913 from DustinCampbell/update-version
Browse files Browse the repository at this point in the history
Update version to v1.5.0-beta8 and fix a could of tslint warnings
  • Loading branch information
DustinCampbell authored Nov 11, 2016
2 parents 0151910 + c2a4705 commit cd508b1
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "csharp",
"publisher": "ms-vscode",
"version": "1.5.0-beta7",
"version": "1.5.0-beta8",
"description": "C# for Visual Studio Code (powered by OmniSharp).",
"displayName": "C#",
"author": "Microsoft Corporation",
Expand Down
2 changes: 0 additions & 2 deletions src/omnisharp/requestQueue.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
*--------------------------------------------------------------------------------------------*/

import { Logger } from '../logger';
import * as protocol from './protocol';
import * as prioritization from './prioritization';

export interface Request {
Expand Down Expand Up @@ -109,7 +108,6 @@ class RequestQueue {
}

export class RequestQueueCollection {
private _logger: Logger;
private _isProcessing: boolean;
private _priorityQueue: RequestQueue;
private _normalQueue: RequestQueue;
Expand Down
2 changes: 0 additions & 2 deletions src/omnisharp/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import { Options } from './options';
import { Logger } from '../logger';
import { DelayTracker } from './delayTracker';
import { LaunchTarget, findLaunchTargets } from './launcher';
import { PlatformInformation } from '../platform';
import { Request, RequestQueueCollection } from './requestQueue';
import TelemetryReporter from 'vscode-extension-telemetry';
import * as path from 'path';
Expand Down Expand Up @@ -58,7 +57,6 @@ const TelemetryReportingDelay = 2 * 60 * 1000; // two minutes
export class OmniSharpServer {

private static _nextId = 1;
private static StartupTimeout = 1000 * 60;

private _debugMode: boolean = false;

Expand Down

0 comments on commit cd508b1

Please sign in to comment.