Subversion Repository Public Repository

litesoft

Diff Revisions 949 vs 950 for /trunk/DeviceDesktopTest/src/org/litesoft/language/server/SimplePropertyFileAccessorImpl.java

Diff revisions: vs.
  @@ -1,5 +1,7 @@
1 1 package org.litesoft.language.server;
2 2
3 + import org.litesoft.commonfoundation.annotations.*;
4 +
3 5 import java.io.*;
4 6 import java.util.*;
5 7
  @@ -17,7 +19,8 @@
17 19 * @return Keys in the order they were stored!
18 20 */
19 21 @Override
20 - public @NotNull @Immutable List<String> getKeys()
22 + public @NotNull
23 + @Immutable List<String> getKeys()
21 24 {
22 25 return Collections.unmodifiableList( new ArrayList<>( mOrderedKeyValues.keySet() ) );
23 26 }