Skip to content

Commit 1448335

Browse files
authored
adjust src from root folder to separated project. (microsoft#2)
* adjust src from root folder to separated project. (microsoft#2) * move src folders Signed-off-by: andxu <[email protected]>
1 parent 8207a05 commit 1448335

File tree

79 files changed

+2693
-2622
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

79 files changed

+2693
-2622
lines changed

.gitignore

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# Compiled class file
2+
*.class
3+
4+
# Log file
5+
*.log
6+
7+
# BlueJ files
8+
*.ctxt
9+
10+
# Mobile Tools for Java (J2ME)
11+
.mtj.tmp/
12+
13+
# Package Files #
14+
*.jar
15+
*.war
16+
*.ear
17+
*.zip
18+
*.tar.gz
19+
*.rar
20+
*.iml
21+
22+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
23+
hs_err_pid*
24+
25+
26+
**/.idea/
27+
**/node_modules/
28+
.DS_Store
29+
.idea
30+
target/
31+
.classpath
32+
.project
33+
.settings
34+
javaConfig.json
35+
**/.checkstyle
36+
target/
37+
bin/
38+
**/lib/
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,32 @@
1-
/*******************************************************************************
2-
* Copyright (c) 2017 Microsoft Corporation and others.
3-
* All rights reserved. This program and the accompanying materials
4-
* are made available under the terms of the Eclipse Public License v1.0
5-
* which accompanies this distribution, and is available at
6-
* http://www.eclipse.org/legal/epl-v10.html
7-
*
8-
* Contributors:
9-
* Microsoft Corporation - initial API and implementation
10-
*******************************************************************************/
11-
12-
package org.eclipse.jdt.ls.debug;
13-
14-
public class DebugException extends Exception {
15-
private static final long serialVersionUID = 1L;
16-
17-
public DebugException() {
18-
super();
19-
}
20-
21-
public DebugException(String message) {
22-
super(message);
23-
}
24-
25-
public DebugException(String message, Throwable cause) {
26-
super(message, cause);
27-
}
28-
29-
public DebugException(Throwable cause) {
30-
super(cause);
31-
}
32-
}
1+
/*******************************************************************************
2+
* Copyright (c) 2017 Microsoft Corporation and others.
3+
* All rights reserved. This program and the accompanying materials
4+
* are made available under the terms of the Eclipse Public License v1.0
5+
* which accompanies this distribution, and is available at
6+
* http://www.eclipse.org/legal/epl-v10.html
7+
*
8+
* Contributors:
9+
* Microsoft Corporation - initial API and implementation
10+
*******************************************************************************/
11+
12+
package org.eclipse.jdt.ls.debug;
13+
14+
public class DebugException extends Exception {
15+
private static final long serialVersionUID = 1L;
16+
17+
public DebugException() {
18+
super();
19+
}
20+
21+
public DebugException(String message) {
22+
super(message);
23+
}
24+
25+
public DebugException(String message, Throwable cause) {
26+
super(message, cause);
27+
}
28+
29+
public DebugException(Throwable cause) {
30+
super(cause);
31+
}
32+
}

0 commit comments

Comments
 (0)