1 package com.sharkysoft.printf;
2
3 final class Formatter_d_h extends Formatter_d
4 {
5
6 Formatter_d_h(final FormatSpecifier ipPfs)
7 {
8 super(ipPfs);
9 }
10
11 void format(PrintfState ipPs)
12 {
13 formatSignedShort(ipPs);
14 }
15
16 }
17