Skip to content

Commit

Permalink
feat: stale event detector (#13009)
Browse files Browse the repository at this point in the history
Signed-off-by: Cody Littley <cody@swirldslabs.com>
  • Loading branch information
cody-littley committed May 13, 2024
1 parent 3c4ed82 commit 1722fef
Show file tree
Hide file tree
Showing 43 changed files with 1,518 additions and 419 deletions.
2 changes: 1 addition & 1 deletion platform-sdk/docs/core/wiring-diagram.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,13 @@ public class WiringComponentProxy implements InvocationHandler {
@Override
public Object invoke(@NonNull final Object proxy, @NonNull final Method method, @NonNull final Object[] args)
throws Throwable {

if (method.getName().equals("toString")) {
// Handle this specially, the debugger likes to call toString()
// on the proxy which disrupts normal behavior when debugging.
return "WiringComponentProxy";
}

mostRecentlyInvokedMethod = Objects.requireNonNull(method);
return null;
}
Expand Down

This file was deleted.

0 comments on commit 1722fef

Please sign in to comment.