mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 10:19:23 +02:00
GP-3857: Port most Debugger components to TraceRmi.
This commit is contained in:
parent
7e4d2bcfaa
commit
fd4380c07a
222 changed files with 7241 additions and 3752 deletions
|
@ -22,7 +22,7 @@ package utility.function;
|
|||
* @param <E> the exception of your choice
|
||||
*/
|
||||
@FunctionalInterface
|
||||
public interface ExceptionalCallback<E extends Exception> {
|
||||
public interface ExceptionalCallback<E extends Throwable> {
|
||||
|
||||
/**
|
||||
* The method that will be called
|
||||
|
|
|
@ -23,7 +23,7 @@ package utility.function;
|
|||
* @param <E> the exception of your choice
|
||||
*/
|
||||
@FunctionalInterface
|
||||
public interface ExceptionalConsumer<T, E extends Exception> {
|
||||
public interface ExceptionalConsumer<T, E extends Throwable> {
|
||||
|
||||
/**
|
||||
* The method that will be called
|
||||
|
|
|
@ -24,7 +24,7 @@ package utility.function;
|
|||
* @param <E> the exception of your choice
|
||||
*/
|
||||
@FunctionalInterface
|
||||
public interface ExceptionalFunction<I, R, E extends Exception> {
|
||||
public interface ExceptionalFunction<I, R, E extends Throwable> {
|
||||
|
||||
/**
|
||||
* The method that will be called
|
||||
|
|
|
@ -23,7 +23,7 @@ package utility.function;
|
|||
* @param <E> the exception of your choice
|
||||
*/
|
||||
@FunctionalInterface
|
||||
public interface ExceptionalSupplier<T, E extends Exception> {
|
||||
public interface ExceptionalSupplier<T, E extends Throwable> {
|
||||
|
||||
/**
|
||||
* The supplier method
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue