Gather data
This commit is contained in:
@@ -35,7 +35,7 @@ public final class ExportFormat {
|
||||
var word = clueMap.get(s.key());
|
||||
if (word == null) continue;
|
||||
|
||||
var p = extractPlacedFromSlot(puz.dict(), s, word);
|
||||
var p = extractPlacedFromSlot(s, word);
|
||||
if (p == null) continue;
|
||||
placed.add(p);
|
||||
}
|
||||
@@ -116,7 +116,7 @@ public final class ExportFormat {
|
||||
/**
|
||||
* Convert a generator Slot + assigned word into a Placed object for export.
|
||||
*/
|
||||
private static Placed extractPlacedFromSlot(Dict dict, Slot s, Lemma lemma) {
|
||||
private static Placed extractPlacedFromSlot(Slot s, Lemma lemma) {
|
||||
int r = s.clueR();
|
||||
int c = s.clueC();
|
||||
int d = s.dir();
|
||||
|
||||
Reference in New Issue
Block a user