From 25716d260bb0b41e9b4db11c6837111dac6234de Mon Sep 17 00:00:00 2001 From: Ivan Hrasko Date: Mon, 15 Jan 2024 15:17:56 +0100 Subject: [PATCH] Replace escape character by empty line The newline escape character in InfoEntity description is marked by IDE as redundant. Use blank line instead. Change-Id: I146bc26c800214321e3681f205ea4554b934c2b4 Signed-off-by: Ivan Hrasko --- .../org/opendaylight/restconf/openapi/model/InfoEntity.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/restconf/restconf-openapi/src/main/java/org/opendaylight/restconf/openapi/model/InfoEntity.java b/restconf/restconf-openapi/src/main/java/org/opendaylight/restconf/openapi/model/InfoEntity.java index d3eeb50a70..4199c20d14 100644 --- a/restconf/restconf-openapi/src/main/java/org/opendaylight/restconf/openapi/model/InfoEntity.java +++ b/restconf/restconf-openapi/src/main/java/org/opendaylight/restconf/openapi/model/InfoEntity.java @@ -15,7 +15,8 @@ public final class InfoEntity extends OpenApiEntity { private final String title; private static final String DESCRIPTION = """ We are providing full API for configurational data which can be edited (by POST, PUT, PATCH and DELETE). - For operational data we only provide GET API.\n + For operational data we only provide GET API. + For majority of request you can see only config data in examples. That's because we can show only one example per request. The exception when you can see operational data in example is when data are representing operational (config false) container with no config data in it."""; -- 2.36.6