forked from eclipse-jdt/eclipse.jdt.core
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'eclipse-jdt:master' into master
- Loading branch information
Showing
1,486 changed files
with
68,001 additions
and
40,614 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: github-actions | ||
directory: "/" | ||
schedule: | ||
interval: daily |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
name: CodeQL call | ||
|
||
on: | ||
push: | ||
branches: [ "master" ] | ||
pull_request: | ||
branches: [ "master" ] | ||
schedule: | ||
- cron: '15 8 * * 1' | ||
|
||
jobs: | ||
callCodeQLworkflow: | ||
uses: eclipse-platform/eclipse.platform.releng.aggregator/.github/workflows/codeQLworkflow.yml@master |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,3 +15,6 @@ Snap.* | |
# maven | ||
/*/target/ | ||
/target/ | ||
|
||
# pomless | ||
.polyglot.* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<extensions> | ||
<extension> | ||
<groupId>org.eclipse.tycho</groupId> | ||
<artifactId>tycho-build</artifactId> | ||
<version>4.0.7</version> | ||
</extension> | ||
</extensions> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package java.io; | ||
|
||
public interface Serializable { | ||
} | ||
package java.io; | ||
|
||
public interface Serializable { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
package java.lang; | ||
|
||
public interface CharSequence { | ||
int length(); | ||
} | ||
package java.lang; | ||
|
||
public interface CharSequence { | ||
int length(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package java.lang; | ||
|
||
public class Class<T> { | ||
} | ||
package java.lang; | ||
|
||
public class Class<T> { | ||
} |
8 changes: 4 additions & 4 deletions
8
JCL/converterJclMin15/src/java/lang/CloneNotSupportedException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package java.lang; | ||
|
||
public class CloneNotSupportedException extends Exception { | ||
} | ||
package java.lang; | ||
|
||
public class CloneNotSupportedException extends Exception { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package java.lang; | ||
|
||
public interface Comparable<T> { | ||
} | ||
package java.lang; | ||
|
||
public interface Comparable<T> { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
package java.lang; | ||
import java.lang.annotation.*; | ||
@Documented | ||
@Retention(RetentionPolicy.RUNTIME) | ||
public @interface Deprecated { | ||
package java.lang; | ||
import java.lang.annotation.*; | ||
@Documented | ||
@Retention(RetentionPolicy.RUNTIME) | ||
public @interface Deprecated { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
package java.lang; | ||
|
||
public abstract class Enum<T extends Enum<T>> implements Comparable<T>, java.io.Serializable { | ||
private static final long serialVersionUID = 2L; | ||
|
||
protected Enum(String name, int ordinal) { | ||
} | ||
public final String name() { | ||
return null; | ||
} | ||
public final int ordinal() { | ||
return 0; | ||
} | ||
public static <T extends Enum<T>> T valueOf(Class<T> enumClass, | ||
String name) { | ||
return null; | ||
} | ||
package java.lang; | ||
|
||
public abstract class Enum<T extends Enum<T>> implements Comparable<T>, java.io.Serializable { | ||
private static final long serialVersionUID = 2L; | ||
|
||
protected Enum(String name, int ordinal) { | ||
} | ||
public final String name() { | ||
return null; | ||
} | ||
public final int ordinal() { | ||
return 0; | ||
} | ||
public static <T extends Enum<T>> T valueOf(Class<T> enumClass, | ||
String name) { | ||
return null; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
package java.lang; | ||
|
||
public class Error extends Throwable { | ||
|
||
public Error(java.lang.String s) { | ||
// TODO Auto-generated constructor stub | ||
} | ||
|
||
public Error(java.lang.String s, java.lang.Throwable cause) { | ||
// TODO Auto-generated constructor stub | ||
} | ||
|
||
public Error() { | ||
// TODO Auto-generated constructor stub | ||
} | ||
} | ||
package java.lang; | ||
|
||
public class Error extends Throwable { | ||
|
||
public Error(java.lang.String s) { | ||
// TODO Auto-generated constructor stub | ||
} | ||
|
||
public Error(java.lang.String s, java.lang.Throwable cause) { | ||
// TODO Auto-generated constructor stub | ||
} | ||
|
||
public Error() { | ||
// TODO Auto-generated constructor stub | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
package java.lang; | ||
|
||
public class Exception extends Throwable { | ||
public Exception() { | ||
super(); | ||
} | ||
|
||
public Exception(String message) { | ||
super(message); | ||
} | ||
|
||
public Exception(String message, Throwable cause) { | ||
super(message, cause); | ||
} | ||
|
||
public Exception(Throwable cause) { | ||
super(cause); | ||
} | ||
} | ||
package java.lang; | ||
|
||
public class Exception extends Throwable { | ||
public Exception() { | ||
super(); | ||
} | ||
|
||
public Exception(String message) { | ||
super(message); | ||
} | ||
|
||
public Exception(String message, Throwable cause) { | ||
super(message, cause); | ||
} | ||
|
||
public Exception(Throwable cause) { | ||
super(cause); | ||
} | ||
} |
10 changes: 5 additions & 5 deletions
10
JCL/converterJclMin15/src/java/lang/IllegalAccessException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
package java.lang; | ||
|
||
public class IllegalAccessException extends RuntimeException { | ||
|
||
} | ||
package java.lang; | ||
|
||
public class IllegalAccessException extends RuntimeException { | ||
|
||
} |
8 changes: 4 additions & 4 deletions
8
JCL/converterJclMin15/src/java/lang/IllegalMonitorStateException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package java.lang; | ||
|
||
public class IllegalMonitorStateException extends RuntimeException { | ||
} | ||
package java.lang; | ||
|
||
public class IllegalMonitorStateException extends RuntimeException { | ||
} |
8 changes: 4 additions & 4 deletions
8
JCL/converterJclMin15/src/java/lang/InterruptedException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package java.lang; | ||
|
||
public class InterruptedException extends Exception { | ||
} | ||
package java.lang; | ||
|
||
public class InterruptedException extends Exception { | ||
} |
10 changes: 5 additions & 5 deletions
10
JCL/converterJclMin15/src/java/lang/NoSuchMethodException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
package java.lang; | ||
|
||
public class NoSuchMethodException extends RuntimeException { | ||
|
||
} | ||
package java.lang; | ||
|
||
public class NoSuchMethodException extends RuntimeException { | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,34 @@ | ||
package java.lang; | ||
|
||
public class Object { | ||
|
||
public Object() { | ||
} | ||
protected Object clone() throws CloneNotSupportedException { | ||
return null; | ||
} | ||
public boolean equals (Object obj) { | ||
return false; | ||
} | ||
protected void finalize () throws Throwable { | ||
} | ||
public final Class<? extends Object> getClass() { | ||
return null; | ||
} | ||
public int hashCode() { | ||
return -1; | ||
} | ||
public final void notify() throws IllegalMonitorStateException { | ||
} | ||
public final void notifyAll() throws IllegalMonitorStateException { | ||
} | ||
public String toString () { | ||
return null; | ||
} | ||
public final void wait () throws IllegalMonitorStateException, InterruptedException { | ||
} | ||
public final void wait (long millis) throws IllegalMonitorStateException, InterruptedException { | ||
} | ||
public final void wait (long millis, int nanos) throws IllegalMonitorStateException, InterruptedException { | ||
} | ||
} | ||
package java.lang; | ||
|
||
public class Object { | ||
|
||
public Object() { | ||
} | ||
protected Object clone() throws CloneNotSupportedException { | ||
return null; | ||
} | ||
public boolean equals (Object obj) { | ||
return false; | ||
} | ||
protected void finalize () throws Throwable { | ||
} | ||
public final Class<? extends Object> getClass() { | ||
return null; | ||
} | ||
public int hashCode() { | ||
return -1; | ||
} | ||
public final void notify() throws IllegalMonitorStateException { | ||
} | ||
public final void notifyAll() throws IllegalMonitorStateException { | ||
} | ||
public String toString () { | ||
return null; | ||
} | ||
public final void wait () throws IllegalMonitorStateException, InterruptedException { | ||
} | ||
public final void wait (long millis) throws IllegalMonitorStateException, InterruptedException { | ||
} | ||
public final void wait (long millis, int nanos) throws IllegalMonitorStateException, InterruptedException { | ||
} | ||
} |
Oops, something went wrong.