Skip to content

Commit 67d059d

Browse files
authored
Clean up engineering setting debts. (microsoft#165)
1 parent 6dc871d commit 67d059d

File tree

4 files changed

+5
-13
lines changed

4 files changed

+5
-13
lines changed

com.microsoft.java.debug.core/src/main/java/com/microsoft/java/debug/core/DebugUtility.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public class DebugUtility {
5656

5757
/**
5858
* Launch a debuggee in suspend mode.
59-
* @see {@link #launch(VirtualMachineManager, String, String, String, String, String)}
59+
* @see #launch(VirtualMachineManager, String, String, String, String, String)
6060
*/
6161
public static IDebugSession launch(VirtualMachineManager vmManager,
6262
String mainClass,

com.microsoft.java.debug.core/src/main/java/com/microsoft/java/debug/core/UsageDataStore.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ private static final class SingletonHolder {
4040
}
4141

4242
/**
43-
* Fetch all pending user data records
43+
* Fetch all pending user data records.
4444
* @return List of user data Object.
4545
*/
4646
public synchronized Object[] fetchAll() {

com.microsoft.java.debug.plugin/META-INF/MANIFEST.MF

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@ Require-Bundle: org.eclipse.core.runtime,
1414
org.eclipse.jdt.debug,
1515
org.eclipse.jdt.core,
1616
org.eclipse.jdt.ls.core,
17-
org.eclipse.jdt.launching
17+
org.eclipse.jdt.launching,
18+
com.google.gson;bundle-version="2.7.0",
19+
org.apache.commons.lang3;bundle-version="3.1.0"
1820
Bundle-ClassPath: lib/gson-2.7.jar,
1921
.,
2022
lib/rxjava-2.1.1.jar,

com.microsoft.java.debug.plugin/pom.xml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,6 @@
2727
<artifactId>maven-dependency-plugin</artifactId>
2828
<configuration>
2929
<artifactItems>
30-
<artifactItem>
31-
<groupId>com.google.code.gson</groupId>
32-
<artifactId>gson</artifactId>
33-
<version>2.7</version>
34-
</artifactItem>
3530
<artifactItem>
3631
<groupId>io.reactivex.rxjava2</groupId>
3732
<artifactId>rxjava</artifactId>
@@ -42,11 +37,6 @@
4237
<artifactId>reactive-streams</artifactId>
4338
<version>1.0.0</version>
4439
</artifactItem>
45-
<artifactItem>
46-
<groupId>org.apache.commons</groupId>
47-
<artifactId>commons-lang3</artifactId>
48-
<version>3.6</version>
49-
</artifactItem>
5040
<artifactItem>
5141
<groupId>commons-io</groupId>
5242
<artifactId>commons-io</artifactId>

0 commit comments

Comments
 (0)