Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for shouldWriteCause (0.26 sec)

  1. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/tasks/internal/ValidationProblemSerialization.java

                        out.value(throwable.getMessage());
                    }
                    if (shouldWriteCause(throwable)) {
                        out.name("cause");
                        write(out, throwable.getCause());
                    }
                    out.endObject();
                }
            }
    
            private static boolean shouldWriteCause(Throwable throwable) {
                Throwable cause = throwable.getCause();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 27.7K bytes
    - Viewed (0)
Back to top