Skip to content
Snippets Groups Projects
Commit 7e45ac70 authored by George Adrian Stoica's avatar George Adrian Stoica
Browse files

typed STD_PROPERTIES to Collection and used List.of !6

parent cd009ff9
No related branches found
No related tags found
1 merge request!6Issue 11 allow user to enter and update metadata about the latlong points
Pipeline #53468 passed
......@@ -21,7 +21,7 @@ public class MetaData {
/**
* the list containing standard properties associated to location metadata
*/
public final static List<String> STD_PROPERTIES = Collections.unmodifiableList(Arrays.asList(NAME_PROPERTY, DESCRIPTION_PROPERTY));
public final static Collection<String> STD_PROPERTIES = List.of(NAME_PROPERTY, DESCRIPTION_PROPERTY);
private Collection<String> tags;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment