Skip to content

Commit

Permalink
Fix checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
terrymanu committed Oct 26, 2023
1 parent 86e070d commit c0e0761
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@
@NoArgsConstructor(access = AccessLevel.PRIVATE)
public final class GsonFactory {

private static final Gson gson = new GsonBuilder().create();
private static final Gson GSON = new GsonBuilder().create();

/**
* Get gson instance.
*
* @return gson instance
*/
public static Gson getGson() {
return gson;
return GSON;
}
}

0 comments on commit c0e0761

Please sign in to comment.