change PointCallback to accept Point instead of ResultPoint

This commit is contained in:
Vukašin Stepanović
2023-02-16 16:20:53 +00:00
parent 0992e85e6c
commit 072d3d0ec7
6 changed files with 8 additions and 8 deletions

View File

@@ -92,7 +92,7 @@ impl Reader for AztecReader {
{
// if let DecodeHintValue::NeedResultPointCallback(cb) = rpcb {
for point in points {
cb(point);
cb(*point);
}
// }
}