Transport: Ignore SSU1 enable config

so we may begin to remove SSU1 code
This commit is contained in:
zzz
2024-01-08 12:22:05 -05:00
parent 23fa8b9295
commit a0d8f5f063
2 changed files with 2 additions and 2 deletions

View File

@@ -227,7 +227,7 @@ public class PeerHelper extends HelperBase {
for (int idx = 0; idx < 8; idx += 4) {
if (style.equals("NTCP") && idx == 0)
continue;
if (style.equals("SSU") && idx == 0 && !_context.getBooleanProperty(TransportManager.PROP_ENABLE_SSU1))
if (style.equals("SSU") && idx == 0) // && !_context.getBooleanProperty(TransportManager.PROP_ENABLE_SSU1))
continue;
rows++;
buf.append("<tr><td align=\"center\"><b>")