From 7869fa42b665207fbc2e861509d973490e4ef71a Mon Sep 17 00:00:00 2001 From: Maschell Date: Wed, 10 Apr 2019 18:00:32 +0200 Subject: [PATCH] Make the WUDPartition class abstract --- .../wiiu/jnus/implementations/wud/parser/WUDPartition.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/de/mas/wiiu/jnus/implementations/wud/parser/WUDPartition.java b/src/de/mas/wiiu/jnus/implementations/wud/parser/WUDPartition.java index 5cc9769..79ec202 100644 --- a/src/de/mas/wiiu/jnus/implementations/wud/parser/WUDPartition.java +++ b/src/de/mas/wiiu/jnus/implementations/wud/parser/WUDPartition.java @@ -1,5 +1,5 @@ /**************************************************************************** - * Copyright (C) 2016-2018 Maschell + * Copyright (C) 2016-2019 Maschell * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -20,7 +20,7 @@ import de.mas.wiiu.jnus.Settings; import lombok.Data; @Data -public class WUDPartition { +public abstract class WUDPartition { private final String partitionName; private final long partitionOffset;