Skip to content

Commit ae1e9b2

Browse files
committed
Make CustomizeOptions an interface instead of an abstract class
1 parent db48b73 commit ae1e9b2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/axellience/vuegwt/client/component/options/CustomizeOptions.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* @author Adrien Baron
55
*/
6-
public abstract class CustomizeOptions
6+
public interface CustomizeOptions
77
{
8-
public abstract void customizeOptions(VueComponentOptions vueComponentOptions);
8+
void customizeOptions(VueComponentOptions vueComponentOptions);
99
}

0 commit comments

Comments
 (0)