File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -124,7 +124,7 @@ for (DotenvEntry e : dotenv.entries()) {
124124 Dotenv
125125 .configure()
126126 .directory("/some/path")
127- .load()
127+ .load();
128128 ```
129129
130130### * optional* ` filename `
@@ -137,7 +137,7 @@ for (DotenvEntry e : dotenv.entries()) {
137137 Dotenv
138138 .configure()
139139 .filename("myenv")
140- .load()
140+ .load();
141141 ```
142142
143143### * optional* ` ignoreIfMalformed `
@@ -150,7 +150,7 @@ for (DotenvEntry e : dotenv.entries()) {
150150 Dotenv
151151 .configure()
152152 .ignoreIfMalformed()
153- .load()
153+ .load();
154154 ```
155155
156156### * optional* ` ignoreIfMissing `
@@ -163,7 +163,7 @@ for (DotenvEntry e : dotenv.entries()) {
163163 Dotenv
164164 .configure()
165165 .ignoreIfMissing()
166- .load()
166+ .load();
167167 ```
168168
169169### * optional* ` systemProperties `
@@ -176,7 +176,7 @@ for (DotenvEntry e : dotenv.entries()) {
176176 Dotenv
177177 .configure()
178178 .systemProperties()
179- .load()
179+ .load();
180180 ```
181181
182182## FAQ
You can’t perform that action at this time.
0 commit comments