(query string)
| 1264 | } |
| 1265 | |
| 1266 | func (h *handler) getBoolQuery(query string) bool { |
| 1267 | result, _ := h.getOptBoolQuery(query, false) |
| 1268 | return result |
| 1269 | } |
| 1270 | |
| 1271 | func (h *handler) getOptBoolQuery(query string, defaultValue bool) (result, isSet bool) { |
| 1272 | q := h.getQuery(query) |
no test coverage detected