Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
sshoc-marketplace-backend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
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
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
SSHOC
sshoc-marketplace-backend
Merge requests
!160
Refactoring naming convention once again
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Refactoring naming convention once again
feature/SSHOC-66_API_unification
into
develop
Overview
0
Commits
1
Pipelines
0
Changes
2
Merged
Eliza Kalata
requested to merge
feature/SSHOC-66_API_unification
into
develop
2 years ago
Overview
0
Commits
1
Pipelines
0
Changes
2
Expand
Refactoring code.
0
0
Merge request reports
Compare
develop
develop (base)
and
latest version
latest version
97d34de4
1 commit,
2 years ago
2 files
+
4
−
4
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/eu/sshopencloud/marketplace/dto/tools/PaginatedTools.java
+
3
−
3
Options
@@ -15,11 +15,11 @@ import java.util.List;
@AllArgsConstructor
public
class
PaginatedTools
extends
PaginatedResult
<
ToolDto
>
{
private
List
<
ToolDto
>
tools
Services
;
private
List
<
ToolDto
>
tools
;
@Override
@JsonGetter
(
"tools
Services
"
)
@JsonGetter
(
"tools"
)
public
List
<
ToolDto
>
getResults
()
{
return
tools
Services
;
return
tools
;
}
}
Loading