-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: add nested authentication input data #10
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think that should make some peoples lifes easier 👏
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, thank you.
|
||
@Override | ||
public boolean equals(Object obj) { | ||
if (this == obj) return true; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's strange that auto-formatter doesn't catch such things. According to the Google Style Guide braces are always used
if (this == obj) return true; | |
if (this == obj) { | |
return true; | |
} |
@Override | ||
public boolean equals(Object obj) { | ||
if (this == obj) return true; | ||
if (obj == null) return false; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if (obj == null) return false; | |
if (obj == null) { | |
return false; | |
} |
public boolean equals(Object obj) { | ||
if (this == obj) return true; | ||
if (obj == null) return false; | ||
if (getClass() != obj.getClass()) return false; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if (getClass() != obj.getClass()) return false; | |
if (getClass() != obj.getClass()) { | |
return false; | |
} |
@@ -51,12 +49,12 @@ public boolean equals(Object obj) { | |||
if (obj == null) return false; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if (obj == null) return false; | |
if (obj == null) { | |
return false; | |
} |
@@ -51,12 +49,12 @@ public boolean equals(Object obj) { | |||
if (obj == null) return false; | |||
if (getClass() != obj.getClass()) return false; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if (getClass() != obj.getClass()) return false; | |
if (getClass() != obj.getClass()) { | |
return false; | |
} |
@@ -41,13 +41,28 @@ | |||
} | |||
}, | |||
{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Suggestion: I am wondering, whether template should also contain one dynamic variable example?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We could add a separate template with optional authentication to showcase this.
@igpetrov My bad for merging this early. |
No worries, those comments were minor. |
Description
closes #9