We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 915af3a commit 90972c6Copy full SHA for 90972c6
modules/openapi-generator/src/main/java/org/openapitools/codegen/languages/JavaPlayFrameworkCodegen.java
@@ -451,6 +451,14 @@ public CodegenSecurity filterByScopeNames(List<String> filterScopes) {
451
452
@Override
453
public boolean equals(Object o) {
454
+ if (o == null) {
455
+ return false;
456
+ }
457
+
458
+ if (this.getClass() != o.getClass()) {
459
460
461
462
boolean result = super.equals(o);
463
JavaPlayFrameworkCodegen.ExtendedCodegenSecurity that = (JavaPlayFrameworkCodegen.ExtendedCodegenSecurity) o;
464
return result &&
0 commit comments