Skip to content

Commit abe4980

Browse files
committed
rebuilt
1 parent e3151c5 commit abe4980

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

samples/client/petstore/tizen/client/SamiOrder.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@
1717
using namespace Tizen::Web::Json;
1818

1919

20-
using Tizen::Base::Integer;
2120
using Tizen::Base::Long;
21+
using Tizen::Base::DateTime;
2222
using Tizen::Base::String;
2323
using Tizen::Base::Boolean;
24-
using Tizen::Base::DateTime;
24+
using Tizen::Base::Integer;
2525

2626

2727
namespace Swagger {

samples/client/petstore/tizen/client/SamiPet.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
using namespace Tizen::Web::Json;
1818

1919

20+
#include "SamiCategory.h"
2021
using Tizen::Base::Long;
2122
using Tizen::Base::String;
22-
#include "SamiCategory.h"
2323
#include "SamiTag.h"
2424
using Tizen::Base::Collection::IList;
2525

samples/client/petstore/tizen/client/SamiPetApi.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,7 @@ deletePetProcessor(HttpResponse* pHttpResponse, void (* handler)(void*, SamiErro
380380
}
381381

382382
void
383-
SamiPetApi::deletePetWithCompletion(String* apiKey, Long* petId, void(*success)(SamiError*)) {
383+
SamiPetApi::deletePetWithCompletion(Long* petId, String* apiKey, void(*success)(SamiError*)) {
384384
client = new SamiApiClient();
385385

386386
client->success(&deletePetProcessor, (void(*)(void*, SamiError*))success);

samples/client/petstore/tizen/client/SamiPetApi.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class SamiPetApi {
3939
updatePetWithFormWithCompletion(String* petId, String* name, String* status, void(* handler)(SamiError*));
4040

4141
void
42-
deletePetWithCompletion(String* apiKey, Long* petId, void(* handler)(SamiError*));
42+
deletePetWithCompletion(Long* petId, String* apiKey, void(* handler)(SamiError*));
4343

4444
void
4545
uploadFileWithCompletion(Long* petId, String* additionalMetadata, SamiFile* file, void(* handler)(SamiError*));

samples/client/petstore/tizen/client/SamiUser.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
using namespace Tizen::Web::Json;
1818

1919

20-
using Tizen::Base::Integer;
2120
using Tizen::Base::Long;
2221
using Tizen::Base::String;
22+
using Tizen::Base::Integer;
2323

2424

2525
namespace Swagger {

0 commit comments

Comments
 (0)