mirror of
https://github.com/ethauvin/rife2-hello.git
synced 2025-04-25 15:37:10 -07:00
Added serialVersionUID to TemplateType
This commit is contained in:
parent
aeaadfb1cc
commit
86b7ec21d9
1 changed files with 3 additions and 0 deletions
|
@ -1,8 +1,11 @@
|
||||||
package com.uwyn.rife2.gradle;
|
package com.uwyn.rife2.gradle;
|
||||||
|
|
||||||
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
|
|
||||||
public class TemplateType implements Serializable {
|
public class TemplateType implements Serializable {
|
||||||
|
@Serial private static final long serialVersionUID = -2736320275307140837L;
|
||||||
|
|
||||||
public static TemplateType HTML = new TemplateType("html");
|
public static TemplateType HTML = new TemplateType("html");
|
||||||
public static TemplateType JSON = new TemplateType("json");
|
public static TemplateType JSON = new TemplateType("json");
|
||||||
public static TemplateType SVG = new TemplateType("svg");
|
public static TemplateType SVG = new TemplateType("svg");
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue