Skip to content
Snippets Groups Projects

Increment lib

Merged Powers, Peter M. requested to merge ghsc/users/pmpowers/nshmp-haz:increment-lib into main
2 files
+ 3
2
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -54,10 +54,11 @@ public class FeaturesService {
*
* @param schemas The Swagger schemas
*/
@SuppressWarnings("rawtypes")
public static void featureTypeSchema(Map<String, Schema> schemas) {
var schema = new Schema<FeatureType>();
schema.setType(SchemaTypeUtil.STRING_TYPE);
featureTypes().stream().forEach(featureType -> schema.addEnumItemObject(featureType));
featureTypes().forEach(featureType -> schema.addEnumItemObject(featureType));
schemas.put(
String.format(
Loading