This is an automated email from the ASF dual-hosted git repository.
jensg pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/thrift.git
The following commit(s) were added to refs/heads/master by this push:
new 728ba7f THRIFT-5413 Int vs String in method get_size required by
property size Client: hx Patch: Jens Geyer
728ba7f is described below
commit 728ba7f8934c2dcc6108ab1f63c33f67979f788f
Author: Jens Geyer <[email protected]>
AuthorDate: Mon May 10 23:10:29 2021 +0200
THRIFT-5413 Int vs String in method get_size required by property size
Client: hx
Patch: Jens Geyer
---
lib/haxe/src/org/apache/thrift/helper/StringSet.hx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/haxe/src/org/apache/thrift/helper/StringSet.hx
b/lib/haxe/src/org/apache/thrift/helper/StringSet.hx
index d8c0d90..b47f868 100644
--- a/lib/haxe/src/org/apache/thrift/helper/StringSet.hx
+++ b/lib/haxe/src/org/apache/thrift/helper/StringSet.hx
@@ -89,7 +89,7 @@ class StringSet {
return ret;
}
- public function get_size() : String {
+ public function get_size() : Int {
return _size;
}
}