Skip to content

Commit f1abdc8

Browse files
committed
Formatting only
1 parent 8741857 commit f1abdc8

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

src/main/java/org/lmdbjava/Env.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,10 +79,9 @@ public static <T> Builder<T> create(final BufferProxy<T> proxy) {
7979
* @param path file system destination
8080
* @param size size in ByteUnit.MEBIBYTES
8181
* @param flags the flags for this new environment
82-
* @return env
82+
* @return env the environment (never null)
8383
*/
84-
public static Env<ByteBuffer> open(
85-
File path, int size, EnvFlags... flags) {
84+
public static Env<ByteBuffer> open(File path, int size, EnvFlags... flags) {
8685
Env<ByteBuffer> env = new Env<>(PROXY_OPTIMAL);
8786
return new Builder<>(env)
8887
.setMaxDbs(1)

0 commit comments

Comments
 (0)