You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by al...@apache.org on 2020/08/02 17:18:30 UTC

[dubbo-go-hessian2] branch master updated (caa228f -> cbfd571)

This is an automated email from the ASF dual-hosted git repository.

alexstocks pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/dubbo-go-hessian2.git.


    from caa228f  Merge pull request #210 from fangyincheng/master
     new e864cba  dd javaProject java8time test code and add go hessian/java8_time strcut Year and testFunc
     new dca33c1  alter author and error word
     new 55c238d  Add java8 time struct
     new 62b0b2d  java8_time_test.go: remove doTestJava8Time
     new 70ee9e3  Add file license and YearMonth/Period support
     new cbfd571  Merge pull request #212 from willson-chen/feature_java8_time

The 547 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 boolean_test.go => java8_time.go                   | 43 +++---------
 boolean.go => java8_time/duration.go               | 23 +++---
 boolean.go => java8_time/instant.go                | 23 +++---
 boolean.go => java8_time/local_date.go             | 24 +++----
 boolean.go => java8_time/local_date_time.go        | 23 +++---
 null_test.go => java8_time/local_time.go           | 26 +++----
 boolean.go => java8_time/month_day.go              | 23 +++---
 boolean.go => java8_time/period.go                 | 26 ++++---
 .../tuple/TupleProvider.java => java8_time/year.go | 13 +++-
 .../TupleProvider.java => java8_time/year_month.go | 14 +++-
 java8_time_test.go                                 | 39 +++++++++++
 test_hessian/src/main/java/test/Hessian.java       |  9 +++
 test_hessian/src/main/java/test/TestJava8Time.java | 81 ++++++++++++++++++++++
 13 files changed, 234 insertions(+), 133 deletions(-)
 copy boolean_test.go => java8_time.go (54%)
 copy boolean.go => java8_time/duration.go (74%)
 copy boolean.go => java8_time/instant.go (74%)
 copy boolean.go => java8_time/local_date.go (72%)
 copy boolean.go => java8_time/local_date_time.go (72%)
 copy null_test.go => java8_time/local_time.go (70%)
 copy boolean.go => java8_time/month_day.go (74%)
 copy boolean.go => java8_time/period.go (70%)
 copy test_hessian/src/main/java/test/tuple/TupleProvider.java => java8_time/year.go (76%)
 copy test_hessian/src/main/java/test/tuple/TupleProvider.java => java8_time/year_month.go (71%)
 create mode 100644 java8_time_test.go
 create mode 100644 test_hessian/src/main/java/test/TestJava8Time.java