nkavian
nkavian
https://github.com/GottaGetSwifty/CodableWrappers/blob/master/Sources/CodableWrappers/Core/OptionalWrappers.swift#L76 I think this `public struct OptionalEncoding: OptionalEncodable {` should be `public struct OptionalEncoding: OptionalEncodable {`
Here is an explicit example where all 3 enum values are still rendered in the swagger output. Using the latest swagger core version with Java 8. ```` public enum Foo...
## Environment | Component | Version | | ------------------ | ------- | | Maven | 3.8.1 | | Java | 1.8.0_241 | | SpotBugs | 4.3.0 | | FindSecBugs |...
This page sends people, myself included, to the fb-contrib page. When I used it, it broke because I really needed to be using the sb-contrib. It might help to update...
Spring Test provides a `MockMvc`. Here is an example: ```java @Autowired private MockMvc mvc; @Test public void verifyWrongIdProducesNotFound() { mvc.perform(MockMvcRequestBuilders.get("/v1/users/0").accept(MediaType.APPLICATION_JSON)) .andExpect(status().isNotFound()); } ``` sb-contrib reports `UTAO_TESTNG_ASSERTION_ODDITIES_NO_ASSERT` for that test. `andExpect`...
### Description My original problem is that I want the post body to be logged with each notification to Bugsnag. Since the Java library doesn't do this, I have to...
**Observation** I'm setting `bugsnag.setFilters("Authorization");` so that I can filter out a sensitive header. When using cURL -u username:password, I noticed the 'authorization' header was still present in the BugSnag dashboard....
### Describe the bug When an unhandled exception occurs, the Spring framework iterates through a list of exception handlers looking for someone to consume the unhandled exception. [This](https://github.com/spring-projects/spring-framework/blob/6fbd4841ec4a20cfd8c5338c6bcf0171839c2326/spring-webmvc/src/main/java/org/springframework/web/servlet/DispatcherServlet.java#L1299) is the...
**Is your feature request related to a problem? Please describe.** Example: I want to enforce a minimum length of 4 for [ShortClassName](https://pmd.github.io/latest/pmd_rules_java_codestyle.html#shortclassname), [ShortMethodName](https://pmd.github.io/latest/pmd_rules_java_codestyle.html#shortmethodname), [ShortVariable](https://pmd.github.io/latest/pmd_rules_java_codestyle.html#shortvariable), but my project has a few...
## Environment | Component | Version | | ------------------ | ------- | | Java | 17 via Eclipse JRE | | SpotBugs | 4.7.1 | | FindSecBugs | 1.12.0 |...