Skip to content

Commit

Permalink
Enable treeStyle token for Java and Python (#9931)
Browse files Browse the repository at this point in the history
  • Loading branch information
chidozieononiwu authored Feb 27, 2025
1 parent 8ec7429 commit 4244add
Show file tree
Hide file tree
Showing 11 changed files with 0 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
Original file line number Diff line number Diff line change
@@ -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;
Expand Down
2 changes: 0 additions & 2 deletions src/dotnet/APIView/APIViewWeb/Languages/GoLanguageService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
}
Expand Down
Original file line number Diff line number Diff line change
@@ -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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
using System.IO;
using System.Threading.Tasks;
using ApiView;
using APIViewWeb.Helpers;
using Microsoft.ApplicationInsights;

namespace APIViewWeb
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
using System.IO;
using System.Threading.Tasks;
using ApiView;
using APIViewWeb.Helpers;
using Microsoft.ApplicationInsights;
using Microsoft.Extensions.Configuration;

Expand All @@ -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)
{
Expand Down
Original file line number Diff line number Diff line change
@@ -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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
using System.IO;
using System.Threading.Tasks;
using ApiView;
using APIViewWeb.Helpers;
using Microsoft.ApplicationInsights;

namespace APIViewWeb
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

using System.IO;
using Microsoft.ApplicationInsights;
using Microsoft.Extensions.Configuration;

namespace APIViewWeb
{
Expand Down

0 comments on commit 4244add

Please sign in to comment.