Skip to content

Commit

Permalink
% 发布3.2.12
Browse files Browse the repository at this point in the history
  • Loading branch information
fjn committed Dec 20, 2021
1 parent acb1bf4 commit 9cd7028
Show file tree
Hide file tree
Showing 46 changed files with 57 additions and 55 deletions.
2 changes: 1 addition & 1 deletion androidjson-to-easyjson/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.github.fangjinuo.easyjson</groupId>
<artifactId>easyjson</artifactId>
<version>3.2.11</version>
<version>3.2.12</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion boonjson-to-easyjson/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.github.fangjinuo.easyjson</groupId>
<artifactId>easyjson</artifactId>
<version>3.2.11</version>
<version>3.2.12</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion easyjson-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.github.fangjinuo.easyjson</groupId>
<artifactId>easyjson</artifactId>
<version>3.2.11</version>
<version>3.2.12</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

package com.jn.easyjson.core.codec.dialect;

import com.jn.langx.util.Objects;
import com.jn.langx.util.Objs;
import com.jn.langx.util.hash.HashCodeBuilder;

public class BeanPropertyId {
Expand Down Expand Up @@ -48,11 +48,11 @@ public boolean equals(Object o) {
}
BeanPropertyId id = (BeanPropertyId)o;

if(!Objects.equals(id.beanClass, beanClass)){
if(!Objs.equals(id.beanClass, beanClass)){
return false;
}

if(!Objects.equals(id.propertyName, propertyName)){
if(!Objs.equals(id.propertyName, propertyName)){
return false;
}
return true;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,16 @@
import com.jn.langx.configuration.ConfigurationCacheLoaderAdapter;
import com.jn.langx.util.Preconditions;
import com.jn.langx.util.concurrent.CommonThreadFactory;
import com.jn.langx.util.logging.Loggers;
import com.jn.langx.util.timing.timer.Timer;
import com.jn.langx.util.timing.timer.WheelTimers;
import org.slf4j.Logger;

import java.lang.ref.WeakReference;

public class ClassLoaderCodecConfigurationRepositoryBuilder<T extends CodecConfiguration> implements Builder<ClassLoaderCodecConfigurationRepository<T>> {
public static final Timer timer = WheelTimers.newHashedWheelTimer(new CommonThreadFactory("EasyJSON", true));

private static final Logger logger = Loggers.getLogger(ClassLoaderCodecConfigurationRepositoryBuilder.class);
/**
* 类字段、方法解析器
*/
Expand Down Expand Up @@ -97,7 +99,7 @@ public ClassLoader classLoader() {
@Override
public ClassLoaderCodecConfigurationRepository<T> build() {
Preconditions.checkNotNull(propertyCodecConfigurationMerger);

logger.info("build a ClassLoaderCodecConfigurationRepository instance for ");
// loader
ClassLoaderCodecConfigurationLoader<T> loaderCodecConfigurationLoader = new ClassLoaderCodecConfigurationLoader<T>();
loaderCodecConfigurationLoader.setBeanClassAnnotatedCodecConfigurationParser(beanClassAnnotatedCodecConfigurationParser);
Expand Down
2 changes: 1 addition & 1 deletion easyjson-fastjson/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.github.fangjinuo.easyjson</groupId>
<artifactId>easyjson</artifactId>
<version>3.2.11</version>
<version>3.2.12</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion easyjson-gson/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.github.fangjinuo.easyjson</groupId>
<artifactId>easyjson</artifactId>
<version>3.2.11</version>
<version>3.2.12</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion easyjson-jackson/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.github.fangjinuo.easyjson</groupId>
<artifactId>easyjson</artifactId>
<version>3.2.11</version>
<version>3.2.12</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion easyjson-javaxjson/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>easyjson</artifactId>
<groupId>com.github.fangjinuo.easyjson</groupId>
<version>3.2.11</version>
<version>3.2.12</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion easyjson-test/easyjson-examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.github.fangjinuo.easyjson</groupId>
<artifactId>easyjson-test</artifactId>
<version>3.2.11</version>
<version>3.2.12</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@
package com.jn.easyjson.tests.examples.struct;


import com.jn.langx.util.Objects;
import com.jn.langx.util.Objs;

public class SelectRequest<R extends SelectRequest, C extends SqlRequestContext<R>> extends SqlRequest<R, C> {
private OrderBy orderBy;
private int timeout;

public String getOrderByAsString() {
return Objects.isNull(this.orderBy) ? "" : this.orderBy.toString();
return Objs.isNull(this.orderBy) ? "" : this.orderBy.toString();
}

public OrderBy getOrderBy() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@


import com.jn.langx.util.BasedStringAccessor;
import com.jn.langx.util.Objects;
import com.jn.langx.util.Objs;

import java.util.HashMap;
import java.util.Map;
Expand Down Expand Up @@ -72,7 +72,7 @@ public boolean isOrderByRequest() {
}

public void clear(){
if(Objects.isNotNull(request)) {
if(Objs.isNotNull(request)) {
request.clear();
}
request = null;
Expand Down
2 changes: 1 addition & 1 deletion easyjson-test/easyjson-test-base/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.github.fangjinuo.easyjson</groupId>
<artifactId>easyjson-test</artifactId>
<version>3.2.11</version>
<version>3.2.12</version>
</parent>

<artifactId>easyjson-test-base</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
package com.jn.easyjson.tests.entity.struct;


import com.jn.langx.util.Objects;
import com.jn.langx.util.Objs;

@SuppressWarnings("rawtypes")
public class SelectRequest<R extends SelectRequest, C extends SqlRequestContext<R>> extends SqlRequest<R, C> {
Expand All @@ -25,7 +25,7 @@ public class SelectRequest<R extends SelectRequest, C extends SqlRequestContext<
private int timeout;

public String getOrderByAsString() {
return Objects.isNull(this.orderBy) ? "" : this.orderBy.toString();
return Objs.isNull(this.orderBy) ? "" : this.orderBy.toString();
}

public OrderBy getOrderBy() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@


import com.jn.langx.util.BasedStringAccessor;
import com.jn.langx.util.Objects;
import com.jn.langx.util.Objs;

import java.util.HashMap;
import java.util.Map;
Expand Down Expand Up @@ -74,7 +74,7 @@ public boolean isOrderByRequest() {
}

public void clear(){
if(Objects.isNotNull(request)) {
if(Objs.isNotNull(request)) {
request.clear();
}
request = null;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.github.fangjinuo.easyjson</groupId>
<artifactId>easyjson-test-fastjson</artifactId>
<version>3.2.11</version>
<version>3.2.12</version>
</parent>

<artifactId>easyjson-test-fastjson-base</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.github.fangjinuo.easyjson</groupId>
<artifactId>easyjson-test-fastjson</artifactId>
<version>3.2.11</version>
<version>3.2.12</version>
</parent>

<artifactId>easyjson-test-fastjson-impl</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.github.fangjinuo.easyjson</groupId>
<artifactId>easyjson-test-fastjson</artifactId>
<version>3.2.11</version>
<version>3.2.12</version>
</parent>

<artifactId>easyjson-test-fastjson-to-gson</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.github.fangjinuo.easyjson</groupId>
<artifactId>easyjson-test-fastjson</artifactId>
<version>3.2.11</version>
<version>3.2.12</version>
</parent>

<artifactId>easyjson-test-fastjson-to-jackson</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion easyjson-test/easyjson-test-fastjson/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.github.fangjinuo.easyjson</groupId>
<artifactId>easyjson-test</artifactId>
<version>3.2.11</version>
<version>3.2.12</version>
</parent>

<artifactId>easyjson-test-fastjson</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.github.fangjinuo.easyjson</groupId>
<artifactId>easyjson-test-gson</artifactId>
<version>3.2.11</version>
<version>3.2.12</version>
</parent>

<artifactId>easyjson-test-gson-base</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.github.fangjinuo.easyjson</groupId>
<artifactId>easyjson-test-gson</artifactId>
<version>3.2.11</version>
<version>3.2.12</version>
</parent>

<artifactId>easyjson-test-gson-impl</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.github.fangjinuo.easyjson</groupId>
<artifactId>easyjson-test-gson</artifactId>
<version>3.2.11</version>
<version>3.2.12</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.github.fangjinuo.easyjson</groupId>
<artifactId>easyjson-test-gson</artifactId>
<version>3.2.11</version>
<version>3.2.12</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion easyjson-test/easyjson-test-gson/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.github.fangjinuo.easyjson</groupId>
<artifactId>easyjson-test</artifactId>
<version>3.2.11</version>
<version>3.2.12</version>
</parent>

<artifactId>easyjson-test-gson</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.github.fangjinuo.easyjson</groupId>
<artifactId>easyjson-test-jackson</artifactId>
<version>3.2.11</version>
<version>3.2.12</version>
</parent>

<artifactId>easyjson-test-jackson-base</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.github.fangjinuo.easyjson</groupId>
<artifactId>easyjson-test-jackson</artifactId>
<version>3.2.11</version>
<version>3.2.12</version>
</parent>

<artifactId>easyjson-test-jackson-impl</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion easyjson-test/easyjson-test-jackson/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.github.fangjinuo.easyjson</groupId>
<artifactId>easyjson-test</artifactId>
<version>3.2.11</version>
<version>3.2.12</version>
</parent>

<artifactId>easyjson-test-jackson</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.github.fangjinuo.easyjson</groupId>
<artifactId>easyjson-test-jsonlib</artifactId>
<version>3.2.11</version>
<version>3.2.12</version>
</parent>

<artifactId>easyjson-test-jsonlib-base</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.github.fangjinuo.easyjson</groupId>
<artifactId>easyjson-test-jsonlib</artifactId>
<version>3.2.11</version>
<version>3.2.12</version>
</parent>

<artifactId>easyjson-test-jsonlib-to-fastjson</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.github.fangjinuo.easyjson</groupId>
<artifactId>easyjson-test-jsonlib</artifactId>
<version>3.2.11</version>
<version>3.2.12</version>
</parent>

<artifactId>easyjson-test-jsonlib-to-gson</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.github.fangjinuo.easyjson</groupId>
<artifactId>easyjson-test-jsonlib</artifactId>
<version>3.2.11</version>
<version>3.2.12</version>
</parent>

<artifactId>easyjson-test-jsonlib-to-jackson</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion easyjson-test/easyjson-test-jsonlib/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.github.fangjinuo.easyjson</groupId>
<artifactId>easyjson-test</artifactId>
<version>3.2.11</version>
<version>3.2.12</version>
</parent>

<artifactId>easyjson-test-jsonlib</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion easyjson-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.github.fangjinuo.easyjson</groupId>
<artifactId>easyjson</artifactId>
<version>3.2.11</version>
<version>3.2.12</version>
</parent>

<artifactId>easyjson-test</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion fastjson-to-easyjson/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.github.fangjinuo.easyjson</groupId>
<artifactId>easyjson</artifactId>
<version>3.2.11</version>
<version>3.2.12</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion gson-to-easyjson/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.github.fangjinuo.easyjson</groupId>
<artifactId>easyjson</artifactId>
<version>3.2.11</version>
<version>3.2.12</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion jettison-to-easyjson/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>easyjson</artifactId>
<groupId>com.github.fangjinuo.easyjson</groupId>
<version>3.2.11</version>
<version>3.2.12</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
Loading

0 comments on commit 9cd7028

Please sign in to comment.