Start counting transforms from 1 rather than 0, like the t-router (#874)

This commit is contained in:
Alan Davis
2022-01-07 10:49:42 +00:00
committed by GitHub
parent 4dc88f70fe
commit 13a1338ddd

View File

@@ -138,7 +138,7 @@ public class TransformerDebug
protected static class Frame
{
private static final AtomicInteger uniqueId = new AtomicInteger(0);
private static final AtomicInteger uniqueId = new AtomicInteger(1);
private int id;
private final String fromUrl;