Skip to content

Commit a5ebd99

Browse files
authored
Merge pull request #106 from jvmlet/master
Make MsiLocalizedResource as it serves as msi task input attribute
2 parents 403b412 + af70437 commit a5ebd99

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/com/inet/gradle/setup/msi/MsiLocalizedResource.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
import java.io.File;
44
import java.io.IOException;
55
import java.io.InputStream;
6+
import java.io.Serializable;
67
import java.nio.charset.StandardCharsets;
78
import java.nio.file.Files;
89
import java.nio.file.StandardOpenOption;
@@ -22,13 +23,13 @@
2223
* @author Gerry Weißbach
2324
*
2425
*/
25-
public class MsiLocalizedResource {
26+
public class MsiLocalizedResource implements Serializable {
2627

2728
private MsiLanguages locale;
2829

2930
private Object resource;
3031

31-
private SetupBuilder setup;
32+
private transient SetupBuilder setup;
3233

3334
private boolean overridable;
3435

0 commit comments

Comments
 (0)