Skip to content

Commit ce5d99a

Browse files
committed
fix forgotten rebranding
1 parent 5204f05 commit ce5d99a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

delivery-sdk-generators/src/main/java/kontent/ai/delivery/generators/CodeGenerator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
import java.util.concurrent.ExecutionException;
1616

1717
/**
18-
* Generates java source files using the Kontent Type listing endpoint in the Delivery API
18+
* Generates java source files using the Kontent.ai Type listing endpoint in the Delivery API
1919
*/
2020
public class CodeGenerator {
2121

delivery-sdk/src/main/java/kontent/ai/delivery/CacheManager.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,18 +50,18 @@
5050
public interface CacheManager {
5151

5252
/**
53-
* Retrieve an earlier cached response from the KontentDelivery API.
53+
* Retrieve an earlier cached response from the Kontent.ai Delivery API.
5454
*
5555
* @param url The url that would be used to retrieve the response from Kontent.ai Delivery API.
5656
* @return JsonNode response or null if no value is available in the cache for the given url.
5757
*/
5858
JsonNode get(final String url);
5959

6060
/**
61-
* Cache a response from the KontentDelivery API.
61+
* Cache a response from the Kontent.ai Delivery API.
6262
*
6363
* @param url the URL that was used to retrieve the response from the Kontent.ai Delivery API.
64-
* @param jsonNode the JsonNode created from the response from the Kontent.ai Deliver API.
64+
* @param jsonNode the JsonNode created from the response from the Kontent.ai Delivery API.
6565
* @param containedContentItems (null allowed) can be used to inspect the original contents of the JsonNode and allow for precise cache invalidation (if implemented).
6666
*/
6767
void put(final String url, JsonNode jsonNode, List<ContentItem> containedContentItems);

0 commit comments

Comments
 (0)