Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,6 @@
public class DefaultApi extends BaseApi
{

/**
* Instantiates this API class to invoke operations on the Swagger Petstore
*/
public DefaultApi()
{
}

/**
* Instantiates this API class to invoke operations on the Swagger Petstore.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,6 @@
public class OrdersApi extends BaseApi
{

/**
* Instantiates this API class to invoke operations on the SodaStore API
*/
public OrdersApi()
{
}

/**
* Instantiates this API class to invoke operations on the SodaStore API.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,6 @@
public class SodasApi extends BaseApi
{

/**
* Instantiates this API class to invoke operations on the SodaStore API
*/
public SodasApi()
{
}

/**
* Instantiates this API class to invoke operations on the SodaStore API.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,6 @@ import javax.annotation.Nullable;
public class {{classname}} extends BaseApi {
{{^aiSdkConstructor}}
/**
* Instantiates this API class to invoke operations on the {{appName}}
*/
public {{classname}}() {}

/**
* Instantiates this API class to invoke operations on the {{appName}}.
*
Expand Down Expand Up @@ -183,4 +178,4 @@ public class {{classname}} extends BaseApi {
}
{{/operation}}
}
{{/operations}}
{{/operations}}
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,6 @@
*/
public class AwesomeSodaApi extends BaseApi {

/**
* Instantiates this API class to invoke operations on the Soda Store API
*/
public AwesomeSodaApi() {}

/**
* Instantiates this API class to invoke operations on the Soda Store API.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,6 @@
*/
public class AwesomeSodasApi extends BaseApi {

/**
* Instantiates this API class to invoke operations on the Soda Store API
*/
public AwesomeSodasApi() {}

/**
* Instantiates this API class to invoke operations on the Soda Store API.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,6 @@
*/
public class DefaultApi extends BaseApi {

/**
* Instantiates this API class to invoke operations on the Soda Store API
*/
public DefaultApi() {}

/**
* Instantiates this API class to invoke operations on the Soda Store API.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,6 @@
*/
public class DefaultApi extends BaseApi {

/**
* Instantiates this API class to invoke operations on the Soda Store API
*/
public DefaultApi() {}

/**
* Instantiates this API class to invoke operations on the Soda Store API.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,6 @@
*/
public class DefaultApi extends BaseApi {

/**
* Instantiates this API class to invoke operations on the Soda Store API
*/
public DefaultApi() {}

/**
* Instantiates this API class to invoke operations on the Soda Store API.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,6 @@
*/
public class DefaultApi extends BaseApi {

/**
* Instantiates this API class to invoke operations on the Soda Store API
*/
public DefaultApi() {}

/**
* Instantiates this API class to invoke operations on the Soda Store API.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,6 @@
*/
public class OrdersApi extends BaseApi {

/**
* Instantiates this API class to invoke operations on the SodaStore API
*/
public OrdersApi() {}

/**
* Instantiates this API class to invoke operations on the SodaStore API.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,6 @@
*/
public class SodasApi extends BaseApi {

/**
* Instantiates this API class to invoke operations on the SodaStore API
*/
public SodasApi() {}

/**
* Instantiates this API class to invoke operations on the SodaStore API.
*
Expand Down
1 change: 1 addition & 0 deletions release_notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
### 🔧 Compatibility Notes

- `ODataResourcePath#addSegment(...)` and `addParameterToLastSegment(...)` now return a new path instance instead of mutating the existing one. Custom extensions that relied on in-place mutation need to reassign the returned path.
- [OpenAPI Apache Generator] Remove no args constructor in generated API clients.

### ✨ New Functionality

Expand Down
Loading