Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
Git ECA API
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Eclipse Foundation
IT
APIs
Git ECA API
Commits
2ee0505d
Commit
2ee0505d
authored
2 years ago
by
Martin Lowe
Browse files
Options
Downloads
Patches
Plain Diff
Add nullable back into EclipseUser object
parent
12034c03
No related branches found
No related tags found
No related merge requests found
Pipeline
#13079
passed
2 years ago
Stage: external
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/org/eclipsefoundation/git/eca/api/models/EclipseUser.java
+3
-1
3 additions, 1 deletion
...org/eclipsefoundation/git/eca/api/models/EclipseUser.java
with
3 additions
and
1 deletion
src/main/java/org/eclipsefoundation/git/eca/api/models/EclipseUser.java
+
3
−
1
View file @
2ee0505d
...
...
@@ -11,6 +11,7 @@
**********************************************************************/
package
org.eclipsefoundation.git.eca.api.models
;
import
javax.annotation.Nullable
;
import
org.eclipsefoundation.git.eca.model.GitUser
;
import
com.fasterxml.jackson.annotation.JsonIgnore
;
...
...
@@ -36,6 +37,7 @@ public abstract class EclipseUser {
public
abstract
boolean
getIsCommitter
();
@Nullable
@JsonIgnore
public
abstract
Boolean
getIsBot
();
...
...
@@ -74,7 +76,7 @@ public abstract class EclipseUser {
public
abstract
Builder
setIsCommitter
(
boolean
isCommitter
);
@JsonIgnore
public
abstract
Builder
setIsBot
(
b
oolean
isBot
);
public
abstract
Builder
setIsBot
(
@Nullable
B
oolean
isBot
);
public
abstract
EclipseUser
build
();
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment