Forráskód Böngészése

Fiddling with source formatting

Sam Jaffe 8 éve
szülő
commit
219252dc5e

+ 1 - 1
src/main/lombok/org/leumasjaffe/charsheet/model/magic/DDSpellFactory.java

@@ -20,7 +20,7 @@ import lombok.experimental.UtilityClass;
 
 @UtilityClass
 @FieldDefaults(level=AccessLevel.PRIVATE, makeFinal=true)
-public final class DDSpellFactory {
+final class DDSpellFactory {
 	Set<String> resourcesLoaded = new HashSet<>();
 	Map<String, DDSpell> spellStore = new HashMap<>();
 	

+ 1 - 3
src/main/lombok/org/leumasjaffe/charsheet/model/magic/impl/Prepared.java

@@ -8,8 +8,6 @@ import org.leumasjaffe.charsheet.model.magic.DDSpellbook;
 import lombok.NonNull;
 
 public abstract class Prepared extends DDSpellbook {
-	@Override
-	public boolean preparesSpells() { return true; }
-
+	@Override public boolean preparesSpells() { return true; }
 	@NonNull public abstract List<DDSpell> getSpellsPreparedPreviouslyForLevel(int level);	
 }