Skip to content
Snippets Groups Projects
Commit 2ee0505d authored by Martin Lowe's avatar Martin Lowe :flag_ca:
Browse files

Add nullable back into EclipseUser object

parent 12034c03
No related branches found
No related tags found
No related merge requests found
Pipeline #13079 passed
......@@ -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(boolean isBot);
public abstract Builder setIsBot(@Nullable Boolean isBot);
public abstract EclipseUser build();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment