We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Learn more about funding links in repositories.
Report abuse
1 parent 631be2b commit 5c607d7Copy full SHA for 5c607d7
src/main/java/io/github/cdimascio/dotenv/Dotenv.java
@@ -3,7 +3,7 @@
3
import java.util.Set;
4
5
/**
6
- * Creates and configures a new dotenv instance
+ * Creates and configures a new Dotenv instance
7
*/
8
public interface Dotenv {
9
src/main/java/io/github/cdimascio/dotenv/DotenvEntry.java
@@ -8,6 +8,11 @@ public class DotenvEntry {
private final String key;
private final String value;
10
11
+ /**
12
+ * Creates a new dotenv entry using the provided key and value
13
+ * @param key
14
+ * @param value
15
+ */
16
public DotenvEntry(String key, String value) {
17
this.key = key;
18
this.value = value;
0 commit comments