Skip to content

Commit 49e1e06

Browse files
jaxrs: httpClient property protected access
1 parent 349c992 commit 49e1e06

File tree

1 file changed

+1
-1
lines changed
  • typescript-generator-core/src/main/java/cz/habarta/typescript/generator/compiler

1 file changed

+1
-1
lines changed

typescript-generator-core/src/main/java/cz/habarta/typescript/generator/compiler/ModelCompiler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ private TsModel createJaxrsClient(SymbolTable symbolTable, TsModel tsModel, Jaxr
321321

322322
// application client class
323323
final TsConstructorModel constructor = new TsConstructorModel(
324-
Arrays.asList(new TsParameterModel(TsAccessibilityModifier.Private, "httpClient", new TsType.ReferenceType(httpClientSymbol))),
324+
Arrays.asList(new TsParameterModel(TsAccessibilityModifier.Protected, "httpClient", new TsType.ReferenceType(httpClientSymbol))),
325325
Collections.<TsStatement>emptyList(),
326326
null
327327
);

0 commit comments

Comments
 (0)