Skip to content

Commit

Permalink
Make PreferencesLink Serializable for Gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
Horcrux7 committed Oct 6, 2021
1 parent 8458536 commit aad6c07
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/com/inet/gradle/setup/dmg/PreferencesLink.java
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
package com.inet.gradle.setup.dmg;

import java.io.Serializable;

/**
* Link for the preferences
* Takes a title and an action
*
* @author gamma
*
*/
public class PreferencesLink {
public class PreferencesLink implements Serializable {

private String title;

Expand Down

0 comments on commit aad6c07

Please sign in to comment.