Skip to content

Commit 725b000

Browse files
javier-godoymlopezFC
authored andcommitted
fix: make ErrorWindowI18n serializable
Close #77
1 parent 18cf41d commit 725b000

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/main/java/com/flowingcode/vaadin/addons/errorwindow/ErrorWindowI18n.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,16 @@
2222
package com.flowingcode.vaadin.addons.errorwindow;
2323

2424
import com.vaadin.flow.function.SerializableFunction;
25+
import java.io.Serializable;
2526

2627
/**
2728
* Internationalization object for customizing the component UI texts. An instance with the default
2829
* messages can be obtained using {@link ErrorWindowI18n#createDefault()}.
2930
*
3031
* @author michael.knigge@gmx.de
3132
*/
32-
public class ErrorWindowI18n {
33+
@SuppressWarnings("serial")
34+
public class ErrorWindowI18n implements Serializable {
3335

3436
private String caption;
3537
private String instructions;

0 commit comments

Comments
 (0)