Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2d8f1b65 authored by Akifumi Yoshimoto's avatar Akifumi Yoshimoto Committed by Android (Google) Code Review
Browse files

Merge "Make dict log cleanup." into lmp-dev

parents c08c5064 c21619fe
Loading
Loading
Loading
Loading
+3 −10
Original line number Diff line number Diff line
@@ -802,20 +802,13 @@ public class BinaryDictEncoderUtils {
        }

        MakedictLog.i("Statistics:\n"
                + "  total file size " + size + "\n"
                + "  Total file size " + size + "\n"
                + "  " + ptNodeArrays.size() + " node arrays\n"
                + "  " + ptNodes + " PtNodes (" + ((float)ptNodes / ptNodeArrays.size())
                        + " PtNodes per node)\n"
                + "  first terminal at " + firstTerminalAddress + "\n"
                + "  last terminal at " + lastTerminalAddress + "\n"
                + "  First terminal at " + firstTerminalAddress + "\n"
                + "  Last terminal at " + lastTerminalAddress + "\n"
                + "  PtNode stats : max = " + maxNodes);
        for (int i = 0; i < ptNodeCounts.length; ++i) {
            MakedictLog.i("    " + i + " : " + ptNodeCounts[i]);
        }
        MakedictLog.i("  Character run stats : max = " + maxRuns);
        for (int i = 0; i < runCounts.length; ++i) {
            MakedictLog.i("    " + i + " : " + runCounts[i]);
        }
    }

    /**