Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changes by GitHub action #553

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -78,11 +78,11 @@ public java.lang.Object apply(java.lang.Object arg0, java.lang.Object arg1) {
//@Override
public java.util.function.BiFunction andThen(java.util.function.Function arg0) {
org.mases.jnet.developed.JNetEventResult eventDataExchange = new org.mases.jnet.developed.JNetEventResult();
raiseEvent("andThen", eventDataExchange, arg0); Object retVal; if (!eventDataExchange.getHasOverride()) retVal = java.util.function.BinaryOperator.super.andThen(arg0); else retVal = eventDataExchange.getReturnData(); return (java.util.function.BiFunction)retVal;
raiseEvent("andThen", eventDataExchange, arg0); Object retVal; if (!eventDataExchange.getHasOverride()) retVal = java.util.function.BiFunction.super.andThen(arg0); else retVal = eventDataExchange.getReturnData(); return (java.util.function.BiFunction)retVal;
}
//@Override
public java.util.function.BiFunction andThenDefault(java.util.function.Function arg0) {
return java.util.function.BinaryOperator.super.andThen(arg0);
return java.util.function.BiFunction.super.andThen(arg0);
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -78,20 +78,20 @@ public java.lang.Object apply(java.lang.Object arg0) {
//@Override
public java.util.function.Function andThen(java.util.function.Function arg0) {
org.mases.jnet.developed.JNetEventResult eventDataExchange = new org.mases.jnet.developed.JNetEventResult();
raiseEvent("andThen", eventDataExchange, arg0); Object retVal; if (!eventDataExchange.getHasOverride()) retVal = java.util.function.UnaryOperator.super.andThen(arg0); else retVal = eventDataExchange.getReturnData(); return (java.util.function.Function)retVal;
raiseEvent("andThen", eventDataExchange, arg0); Object retVal; if (!eventDataExchange.getHasOverride()) retVal = java.util.function.Function.super.andThen(arg0); else retVal = eventDataExchange.getReturnData(); return (java.util.function.Function)retVal;
}
//@Override
public java.util.function.Function andThenDefault(java.util.function.Function arg0) {
return java.util.function.UnaryOperator.super.andThen(arg0);
return java.util.function.Function.super.andThen(arg0);
}
//@Override
public java.util.function.Function compose(java.util.function.Function arg0) {
org.mases.jnet.developed.JNetEventResult eventDataExchange = new org.mases.jnet.developed.JNetEventResult();
raiseEvent("compose", eventDataExchange, arg0); Object retVal; if (!eventDataExchange.getHasOverride()) retVal = java.util.function.UnaryOperator.super.compose(arg0); else retVal = eventDataExchange.getReturnData(); return (java.util.function.Function)retVal;
raiseEvent("compose", eventDataExchange, arg0); Object retVal; if (!eventDataExchange.getHasOverride()) retVal = java.util.function.Function.super.compose(arg0); else retVal = eventDataExchange.getReturnData(); return (java.util.function.Function)retVal;
}
//@Override
public java.util.function.Function composeDefault(java.util.function.Function arg0) {
return java.util.function.UnaryOperator.super.compose(arg0);
return java.util.function.Function.super.compose(arg0);
}

}