mirror of
https://github.com/querydsl/querydsl.git
synced 2026-07-03 21:07:49 +08:00
Fix syntax error in method with return type in ScalaWriter
This commit is contained in:
parent
1ea7390324
commit
fb4de68738
@ -295,7 +295,7 @@ public class ScalaWriter extends AbstractCodeWriter<ScalaWriter> {
|
||||
beginLine(modifiers, escape(methodName)).params(args).append(" {").nl();
|
||||
} else {
|
||||
beginLine(modifiers, escape(methodName)).params(args)
|
||||
.append(": ").append(getGenericName(true, returnType)).append(" {").nl();
|
||||
.append(": ").append(getGenericName(true, returnType)).append(" = {").nl();
|
||||
}
|
||||
|
||||
return goIn();
|
||||
|
||||
Loading…
Reference in New Issue
Block a user