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.
Re-normalize line-endings in git of all files to Linux style ("\n")
Some files were checked-in into git having windows style line endings (\r\n). This is in general not wanted because it can cause modified files without any difference in git-staging on Windows if auto-crlf is enabled. To re-normalize line endings of all files use the following command (including dot): git add --renormalize .
- Loading branch information
1 parent
2e12221
commit 0c7100e
Showing
129 changed files
with
20,697 additions
and
20,697 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 |
---|---|---|
@@ -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 { | ||
} | ||
} |
24 changes: 12 additions & 12 deletions
24
JCL/converterJclMin15/src/java/lang/RuntimeException.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,12 +1,12 @@ | ||
package java.lang; | ||
|
||
public class RuntimeException extends Exception { | ||
|
||
public RuntimeException(java.lang.String s) { | ||
// TODO Auto-generated constructor stub | ||
} | ||
|
||
public RuntimeException() { | ||
// TODO Auto-generated constructor stub | ||
} | ||
} | ||
package java.lang; | ||
|
||
public class RuntimeException extends Exception { | ||
|
||
public RuntimeException(java.lang.String s) { | ||
// TODO Auto-generated constructor stub | ||
} | ||
|
||
public RuntimeException() { | ||
// 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,8 +1,8 @@ | ||
package java.lang; | ||
|
||
public class String implements CharSequence { | ||
public int length() { return 0; } | ||
public int codePointAt(int index) { | ||
return 0; | ||
} | ||
} | ||
package java.lang; | ||
|
||
public class String implements CharSequence { | ||
public int length() { return 0; } | ||
public int codePointAt(int index) { | ||
return 0; | ||
} | ||
} |
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,20 +1,20 @@ | ||
package java.lang; | ||
|
||
public class Throwable { | ||
|
||
public Throwable(java.lang.String message) { | ||
// TODO Auto-generated constructor stub | ||
} | ||
|
||
public Throwable() { | ||
// TODO Auto-generated constructor stub | ||
} | ||
|
||
public Throwable(java.lang.String message, Throwable cause) { | ||
// TODO Auto-generated constructor stub | ||
} | ||
|
||
public Throwable(Throwable cause) { | ||
// TODO Auto-generated constructor stub | ||
} | ||
} | ||
package java.lang; | ||
|
||
public class Throwable { | ||
|
||
public Throwable(java.lang.String message) { | ||
// TODO Auto-generated constructor stub | ||
} | ||
|
||
public Throwable() { | ||
// TODO Auto-generated constructor stub | ||
} | ||
|
||
public Throwable(java.lang.String message, Throwable cause) { | ||
// TODO Auto-generated constructor stub | ||
} | ||
|
||
public Throwable(Throwable cause) { | ||
// TODO Auto-generated constructor stub | ||
} | ||
} |
8 changes: 4 additions & 4 deletions
8
JCL/converterJclMin15/src/java/lang/annotation/Annotation.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.annotation; | ||
public interface Annotation { | ||
|
||
} | ||
package java.lang.annotation; | ||
public interface Annotation { | ||
|
||
} |
14 changes: 7 additions & 7 deletions
14
JCL/converterJclMin15/src/java/lang/annotation/Documented.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,7 +1,7 @@ | ||
package java.lang.annotation; | ||
|
||
@Documented | ||
@Retention(RetentionPolicy.RUNTIME) | ||
@Target(ElementType.ANNOTATION_TYPE) | ||
public @interface Documented { | ||
} | ||
package java.lang.annotation; | ||
|
||
@Documented | ||
@Retention(RetentionPolicy.RUNTIME) | ||
@Target(ElementType.ANNOTATION_TYPE) | ||
public @interface Documented { | ||
} |
12 changes: 6 additions & 6 deletions
12
JCL/converterJclMin15/src/java/lang/annotation/Inherited.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,7 +1,7 @@ | ||
package java.lang.annotation; | ||
|
||
@Documented | ||
@Retention(RetentionPolicy.RUNTIME) | ||
@Target(ElementType.ANNOTATION_TYPE) | ||
public @interface Inherited { | ||
package java.lang.annotation; | ||
|
||
@Documented | ||
@Retention(RetentionPolicy.RUNTIME) | ||
@Target(ElementType.ANNOTATION_TYPE) | ||
public @interface Inherited { | ||
} |
Oops, something went wrong.