Skip to content

Commit c97527a

Browse files
Reduce visibility AiCoreService#DOTENV from public to private (#136)
* Update AiCoreService.java * Update core/src/main/java/com/sap/ai/sdk/core/AiCoreService.java Co-authored-by: Charles Dubois <[email protected]> --------- Co-authored-by: Charles Dubois <[email protected]>
1 parent eee6c5d commit c97527a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/java/com/sap/ai/sdk/core/AiCoreService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public class AiCoreService implements AiCoreDestination {
4343
private static final String AI_RESOURCE_GROUP = "URL.headers.AI-Resource-Group";
4444

4545
/** loads the .env file from the root of the project */
46-
public static final Dotenv DOTENV = Dotenv.configure().ignoreIfMissing().load();
46+
private static final Dotenv DOTENV = Dotenv.configure().ignoreIfMissing().load();
4747

4848
/** The resource group is defined by AiCoreDeployment.withResourceGroup(). */
4949
@Nonnull String resourceGroup;

0 commit comments

Comments
 (0)