Skip to content

Commit

Permalink
Changed JSONV2 to JSON
Browse files Browse the repository at this point in the history
  • Loading branch information
rma-rripken committed Jun 5, 2024
1 parent da47d8d commit ae44776
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cwms-data-api/src/main/java/cwms/cda/data/dto/Project.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
@JsonDeserialize(builder = Project.Builder.class)
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonNaming(PropertyNamingStrategies.KebabCaseStrategy.class)
@FormattableWith(contentType = Formats.JSONV2, formatter = JsonV2.class)
@FormattableWith(contentType = Formats.JSON, formatter = JsonV2.class)
public class Project extends CwmsDTO {

private final String name;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
import org.apache.commons.io.IOUtils;
import org.junit.jupiter.api.Test;

public class ProjectTest {
class ProjectTest {


@Test
Expand Down

0 comments on commit ae44776

Please sign in to comment.