2
0
Fork 0
mirror of https://github.com/ethauvin/rife2-hello.git synced 2025-04-25 07:27:12 -07:00

Added serialVersionUID to TemplateType

This commit is contained in:
Geert Bevin 2023-03-04 12:09:59 -05:00
parent aeaadfb1cc
commit 86b7ec21d9

View file

@ -1,8 +1,11 @@
package com.uwyn.rife2.gradle;
import java.io.Serial;
import java.io.Serializable;
public class TemplateType implements Serializable {
@Serial private static final long serialVersionUID = -2736320275307140837L;
public static TemplateType HTML = new TemplateType("html");
public static TemplateType JSON = new TemplateType("json");
public static TemplateType SVG = new TemplateType("svg");