diff options
| author | Ben Culkin <scorpress@gmail.com> | 2020-12-03 19:24:23 -0500 |
|---|---|---|
| committer | Ben Culkin <scorpress@gmail.com> | 2020-12-03 19:24:23 -0500 |
| commit | 38f1e562bf1e1d9d2c837317fced7467f2e81adc (patch) | |
| tree | c26d3e0075f7bc027a491ab005f72d9907c51201 /dice/src/main/java/bjc/dicelang/neodice/diepool/ExpandDiePool.java | |
| parent | 28895cad07c7aec1b324a2c75e5da5ce728cad91 (diff) | |
Rename interfaces to match Java style
Renames several interfaces named in the IWhatever style, which Java
doesn't use
Diffstat (limited to 'dice/src/main/java/bjc/dicelang/neodice/diepool/ExpandDiePool.java')
| -rw-r--r-- | dice/src/main/java/bjc/dicelang/neodice/diepool/ExpandDiePool.java | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/dice/src/main/java/bjc/dicelang/neodice/diepool/ExpandDiePool.java b/dice/src/main/java/bjc/dicelang/neodice/diepool/ExpandDiePool.java index 7c58e72..97acc79 100644 --- a/dice/src/main/java/bjc/dicelang/neodice/diepool/ExpandDiePool.java +++ b/dice/src/main/java/bjc/dicelang/neodice/diepool/ExpandDiePool.java @@ -6,13 +6,13 @@ import java.util.stream.*; import bjc.dicelang.neodice.*; -public class ExpandDiePool<SideType> implements IDiePool<SideType> { - private final IDie<SideType> contained; +public class ExpandDiePool<SideType> implements DiePool<SideType> { + private final Die<SideType> contained; - private final BiFunction<IDie<SideType>, Random, Stream<SideType>> expander; + private final BiFunction<Die<SideType>, Random, Stream<SideType>> expander; - public ExpandDiePool(IDie<SideType> contained, - BiFunction<IDie<SideType>, Random, Stream<SideType>> expander) { + public ExpandDiePool(Die<SideType> contained, + BiFunction<Die<SideType>, Random, Stream<SideType>> expander) { this.contained = contained; this.expander = expander; } |
