-
Notifications
You must be signed in to change notification settings - Fork 77
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add ProjectRootCalculator, cleanup PathHelper #5060
Add ProjectRootCalculator, cleanup PathHelper #5060
Conversation
@@ -45,197 +45,6 @@ public void PathHelper_EscapeFileName() | |||
actualEscaped.Should().Be(expectedEscaped); | |||
} | |||
|
|||
[TestMethod] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The methods tested here were unused, so I removed them and these tests
@@ -53,83 +53,6 @@ public static string EscapeFileName(string unescapedName) | |||
return escapedName.ToString(); | |||
} | |||
|
|||
/// <summary> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removed unused methods
@@ -28,6 +28,7 @@ | |||
namespace SonarLint.VisualStudio.ConnectedMode | |||
{ | |||
[Export(typeof(IStatefulServerBranchProvider))] | |||
// note: this class does not seem to be safe from concurrent updates |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe add a ticket to backlog so we can track it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Kudos, SonarCloud Quality Gate passed! |
1085957
into
feature/mute-server-issues
Fixes #5058