Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Team 14 - IDATT1002
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Eirik Steira
Team 14 - IDATT1002
Merge requests
!71
Rename field albumId to chosenAlbumId
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Rename field albumId to chosenAlbumId
refactor/data-exchange-chosen-album
into
dev
Overview
0
Commits
1
Pipelines
0
Changes
2
Merged
Eirik Steira
requested to merge
refactor/data-exchange-chosen-album
into
dev
5 years ago
Overview
0
Commits
1
Pipelines
0
Changes
2
Expand
0
0
Merge request reports
Compare
dev
dev (base)
and
latest version
latest version
db5310f1
1 commit,
5 years ago
2 files
+
6
−
6
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
src/main/java/NTNU/IDATT1002/controllers/DataExchange.java
+
5
−
5
Options
@@ -11,7 +11,7 @@ import java.util.List;
public
class
DataExchange
{
private
String
searchField
;
private
List
<
File
>
uploadedFiles
;
private
Long
a
lbumId
;
private
Long
chosenA
lbumId
;
public
DataExchange
(){
searchField
=
""
;
@@ -24,8 +24,8 @@ public class DataExchange {
return
searchField
;
}
public
Long
getAlbumId
()
{
return
a
lbumId
;
public
Long
get
Chosen
AlbumId
()
{
return
chosenA
lbumId
;
}
public
void
setUploadedFiles
(
List
<
File
>
uploadedFiles
)
{
@@ -36,7 +36,7 @@ public class DataExchange {
this
.
searchField
=
searchField
;
}
public
void
setAlbumId
(
Long
albumId
)
{
this
.
a
lbumId
=
albumId
;
public
void
set
Chosen
AlbumId
(
Long
albumId
)
{
this
.
chosenA
lbumId
=
albumId
;
}
}
Loading