diff --git a/src/dotnet/APIView/APIViewWeb/Languages/CSharpLanguageService.cs b/src/dotnet/APIView/APIViewWeb/Languages/CSharpLanguageService.cs index 2e0bf0ff5c6..0c0a458de63 100644 --- a/src/dotnet/APIView/APIViewWeb/Languages/CSharpLanguageService.cs +++ b/src/dotnet/APIView/APIViewWeb/Languages/CSharpLanguageService.cs @@ -2,10 +2,7 @@ // Licensed under the MIT License. using System; -using System.Collections.Generic; using System.IO; -using System.Text.RegularExpressions; -using ApiView; using Microsoft.ApplicationInsights; using Microsoft.Extensions.Configuration; diff --git a/src/dotnet/APIView/APIViewWeb/Languages/CppLanguageService.cs b/src/dotnet/APIView/APIViewWeb/Languages/CppLanguageService.cs index b93b97abe32..39a09cae40a 100644 --- a/src/dotnet/APIView/APIViewWeb/Languages/CppLanguageService.cs +++ b/src/dotnet/APIView/APIViewWeb/Languages/CppLanguageService.cs @@ -1,7 +1,6 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. -using System; using System.Collections.Generic; using System.Data; using System.IO; diff --git a/src/dotnet/APIView/APIViewWeb/Languages/GoLanguageService.cs b/src/dotnet/APIView/APIViewWeb/Languages/GoLanguageService.cs index 7b614242ff0..bfcd8a0fa2b 100644 --- a/src/dotnet/APIView/APIViewWeb/Languages/GoLanguageService.cs +++ b/src/dotnet/APIView/APIViewWeb/Languages/GoLanguageService.cs @@ -7,9 +7,7 @@ using System.Diagnostics; using System.Threading.Tasks; using ApiView; -using APIViewWeb.Helpers; using Microsoft.ApplicationInsights; -using Microsoft.Extensions.Configuration; namespace APIViewWeb { diff --git a/src/dotnet/APIView/APIViewWeb/Languages/JavaLanguageService.cs b/src/dotnet/APIView/APIViewWeb/Languages/JavaLanguageService.cs index 74b29cca230..fda4b4827c1 100644 --- a/src/dotnet/APIView/APIViewWeb/Languages/JavaLanguageService.cs +++ b/src/dotnet/APIView/APIViewWeb/Languages/JavaLanguageService.cs @@ -13,8 +13,6 @@ public class JavaLanguageService : LanguageProcessor public override string ProcessName { get; } = "java"; public override string VersionString { get; } = "apiview-java-processor-1.32.0.jar"; - public override bool UsesTreeStyleParser { get; } = false; - public JavaLanguageService(TelemetryClient telemetryClient) : base(telemetryClient) { } diff --git a/src/dotnet/APIView/APIViewWeb/Languages/JavaScriptLanguageService.cs b/src/dotnet/APIView/APIViewWeb/Languages/JavaScriptLanguageService.cs index 41d3eb41118..4e1d8949d21 100644 --- a/src/dotnet/APIView/APIViewWeb/Languages/JavaScriptLanguageService.cs +++ b/src/dotnet/APIView/APIViewWeb/Languages/JavaScriptLanguageService.cs @@ -1,7 +1,6 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. -using System; using System.IO; using Microsoft.ApplicationInsights; using Microsoft.Extensions.Configuration; diff --git a/src/dotnet/APIView/APIViewWeb/Languages/LanguageProcessor.cs b/src/dotnet/APIView/APIViewWeb/Languages/LanguageProcessor.cs index 60c94719998..ba722292442 100644 --- a/src/dotnet/APIView/APIViewWeb/Languages/LanguageProcessor.cs +++ b/src/dotnet/APIView/APIViewWeb/Languages/LanguageProcessor.cs @@ -3,7 +3,6 @@ using System.IO; using System.Threading.Tasks; using ApiView; -using APIViewWeb.Helpers; using Microsoft.ApplicationInsights; namespace APIViewWeb diff --git a/src/dotnet/APIView/APIViewWeb/Languages/PythonLanguageService.cs b/src/dotnet/APIView/APIViewWeb/Languages/PythonLanguageService.cs index 533e43258ce..fa1b33426ff 100644 --- a/src/dotnet/APIView/APIViewWeb/Languages/PythonLanguageService.cs +++ b/src/dotnet/APIView/APIViewWeb/Languages/PythonLanguageService.cs @@ -6,7 +6,6 @@ using System.IO; using System.Threading.Tasks; using ApiView; -using APIViewWeb.Helpers; using Microsoft.ApplicationInsights; using Microsoft.Extensions.Configuration; @@ -20,7 +19,6 @@ public class PythonLanguageService : LanguageProcessor public override string[] Extensions { get; } = { ".whl" }; public override string VersionString { get; } = "0.3.12"; public override string ProcessName => _pythonExecutablePath; - public override bool UsesTreeStyleParser { get; } = false; public PythonLanguageService(IConfiguration configuration, TelemetryClient telemetryClient) : base(telemetryClient) { diff --git a/src/dotnet/APIView/APIViewWeb/Languages/RustLanguageService.cs b/src/dotnet/APIView/APIViewWeb/Languages/RustLanguageService.cs index 0cf52c063ea..358b0a27adf 100644 --- a/src/dotnet/APIView/APIViewWeb/Languages/RustLanguageService.cs +++ b/src/dotnet/APIView/APIViewWeb/Languages/RustLanguageService.cs @@ -1,7 +1,6 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. -using System; using System.IO; using Microsoft.ApplicationInsights; using Microsoft.Extensions.Configuration; diff --git a/src/dotnet/APIView/APIViewWeb/Languages/SwaggerLanguageService.cs b/src/dotnet/APIView/APIViewWeb/Languages/SwaggerLanguageService.cs index 1d3ce59eb71..4722f211186 100644 --- a/src/dotnet/APIView/APIViewWeb/Languages/SwaggerLanguageService.cs +++ b/src/dotnet/APIView/APIViewWeb/Languages/SwaggerLanguageService.cs @@ -5,7 +5,6 @@ using System.IO; using System.Threading.Tasks; using ApiView; -using APIViewWeb.Helpers; using Microsoft.ApplicationInsights; namespace APIViewWeb diff --git a/src/dotnet/APIView/APIViewWeb/Languages/TypeSpecLanguageService.cs b/src/dotnet/APIView/APIViewWeb/Languages/TypeSpecLanguageService.cs index cc8ffb8cb6b..2ef87e1d090 100644 --- a/src/dotnet/APIView/APIViewWeb/Languages/TypeSpecLanguageService.cs +++ b/src/dotnet/APIView/APIViewWeb/Languages/TypeSpecLanguageService.cs @@ -3,10 +3,8 @@ using System; using System.IO; -using System.Text.Json.Serialization; using System.Threading.Tasks; using ApiView; -using APIViewWeb.Helpers; using APIViewWeb.Models; using Microsoft.ApplicationInsights; using Microsoft.Extensions.Configuration; diff --git a/src/dotnet/APIView/APIViewWeb/Languages/XmlLanguageService.cs b/src/dotnet/APIView/APIViewWeb/Languages/XmlLanguageService.cs index 36000cc4dc5..0b814434f63 100644 --- a/src/dotnet/APIView/APIViewWeb/Languages/XmlLanguageService.cs +++ b/src/dotnet/APIView/APIViewWeb/Languages/XmlLanguageService.cs @@ -3,7 +3,6 @@ using System.IO; using Microsoft.ApplicationInsights; -using Microsoft.Extensions.Configuration; namespace APIViewWeb {