Skip to content
Toggle navigation
Projects
Groups
Snippets
Help
Antti Väyrynen
/
Moya
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Wiki
Settings
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit 9f4c893e
authored
Jan 08, 2018
by
Tuomas Riihimäki
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add missing ArrayListWrapper
1 parent
8441bf57
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
0 deletions
code/moya-web/src/main/java/fi/codecrew/moya/rest/ArrayListWrapper.java
code/moya-web/src/main/java/fi/codecrew/moya/rest/ArrayListWrapper.java
0 → 100644
View file @
9f4c893
package
fi
.
codecrew
.
moya
.
rest
;
import
javax.xml.bind.annotation.XmlRootElement
;
import
java.util.ArrayList
;
@XmlRootElement
public
class
ArrayListWrapper
<
T
>
{
public
ArrayListWrapper
()
{
}
public
ArrayListWrapper
(
ArrayList
<
T
>
list
)
{
this
.
list
=
list
;
}
public
ArrayList
<
T
>
list
=
new
ArrayList
<
T
>();
}
\ No newline at end of file
Write
Preview
Markdown
is supported
Attach a file
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 post a comment