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:
@@ -180,8 +180,7 @@ println("Found "+aRecords.size() +" A records");
|
|||||||
List<RecordEntity> ipRecords = cfDnsClient.recordGet(zone, "www", RecordType.A, RecordType.AAAA);
|
List<RecordEntity> ipRecords = cfDnsClient.recordGet(zone, "www", RecordType.A, RecordType.AAAA);
|
||||||
ipRecords.
|
ipRecords.
|
||||||
|
|
||||||
forEach(record ->
|
forEach(record ->System.out.
|
||||||
System.out.
|
|
||||||
|
|
||||||
println("IP Record: "+record.getContent()));
|
println("IP Record: "+record.getContent()));
|
||||||
```
|
```
|
||||||
|
|||||||
Reference in New Issue
Block a user