Since updating to version 4.9.5.0 (before: 4.9.4.2) for the Spotbugs Maven Plugin, we receive the following error for the folowing Java code line: ``` public @Nullable String provideTransactionName(@NotNull HttpServletRequest request) { return String.format("%s %s", request.getMethod(), request.getRequestURI()); } ``` leads to error: ``` [ERROR] Medium: Array index is out of bounds: 2 [...] At XYZ.java:[line 21]At XYZ.java:[line 21] RANGE_ARRAY_INDEX ``` I can't find any error in this line, also it is a "no brainer" ;) Thank you in advance!