Skip to content

Commit

Permalink
Fix name typo
Browse files Browse the repository at this point in the history
  • Loading branch information
qiuguohua committed Nov 28, 2024
1 parent a33d839 commit 4517665
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion native/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3146,7 +3146,7 @@ function(cc_apply_definations target)
$<$<BOOL:${USE_SE_NAPI}>:SCRIPT_ENGINE_TYPE=5>
$<$<BOOL:${USE_SE_JSVM}>:SCRIPT_ENGINE_TYPE=6>
$<$<OR:$<CONFIG:Debug>,$<BOOL:${CC_DEBUG_FORCE}>>:CC_DEBUG=1>
$<IF:$<BOOL:${USE_APDF}>,CC_USE_APDF=1,CC_USE_USE_APDF=0>
$<IF:$<BOOL:${USE_APDF}>,CC_USE_APDF=1,CC_USE_APDF=0>
$<IF:$<BOOL:${USE_GOOGLE_BILLING}>,CC_USE_GOOGLE_BILLING=1,CC_USE_GOOGLE_BILLING=0>
)
endfunction()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,11 @@ public static GoogleBilling getInstance() {
}

public static void removeProductDetails(int productDetailsID) {
instance.removeProductDetails(productDetailsID);
getInstance().removeProductDetails(productDetailsID);
}

public static void removePurchase(int purchaseID) {
instance.removeProductDetails(purchaseID);
getInstance().removeProductDetails(purchaseID);
}

public static void startConnection() {
Expand Down

0 comments on commit 4517665

Please sign in to comment.