Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
course-material
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
2
Issues
2
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
IT1901
course-material
Commits
7e45ac70
Commit
7e45ac70
authored
Oct 23, 2019
by
George Adrian Stoica
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
typed STD_PROPERTIES to Collection and used List.of
!6
parent
cd009ff9
Pipeline
#53468
passed with stage
in 2 minutes and 6 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
simpleexample2/core/src/main/java/simpleex/core/MetaData.java
...leexample2/core/src/main/java/simpleex/core/MetaData.java
+1
-1
No files found.
simpleexample2/core/src/main/java/simpleex/core/MetaData.java
View file @
7e45ac70
...
...
@@ -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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment