Simplify README examples by removing unnecessary line breaks, standardizing method chaining, and improving code readability for batch DNS operations and fluent API usage.

This commit is contained in:
2026-01-06 15:07:26 +01:00
parent 25fd480e69
commit edf1752e81
+1 -2
View File
@@ -180,8 +180,7 @@ println("Found "+aRecords.size() +" A records");
List<RecordEntity> ipRecords = cfDnsClient.recordGet(zone, "www", RecordType.A, RecordType.AAAA);
ipRecords.
forEach(record ->
System.out.
forEach(record ->System.out.
println("IP Record: "+record.getContent()));
```