Skip to content

Commit

Permalink
try relase 0.9.15
Browse files Browse the repository at this point in the history
  • Loading branch information
HbnKing committed Dec 28, 2023
1 parent b275335 commit 4356695
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public class BsonTypeCodecMap {
private final Codec<?>[] codecs = new Codec[256];

public BsonTypeCodecMap(BsonTypeClassMap bsonTypeClassMap, CodecRegistry codecRegistry) {
this.bsonTypeClassMap = (BsonTypeClassMap) Assert.notNull(bsonTypeClassMap,"bsonTypeClassMap");
this.bsonTypeClassMap = (BsonTypeClassMap) Assert.notNull(bsonTypeClassMap);
Assert.notNull(codecRegistry,"codecRegistry");
Iterator var3 = bsonTypeClassMap.keys().iterator();

Expand Down
1 change: 0 additions & 1 deletion mars-core/src/main/java/com/whaleal/mars/util/StrUtil.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package com.whaleal.mars.util;

import com.whaleal.icefrog.core.collection.CollectionUtil;
import com.whaleal.icefrog.core.lang.Precondition;
import com.whaleal.icefrog.core.text.*;
import com.whaleal.icefrog.core.util.*;

Expand Down
13 changes: 13 additions & 0 deletions mars-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -86,13 +86,26 @@
<scope>compile</scope>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-autoconfigure</artifactId>
<version>${spring-boot.version}</version>

</dependency>


<dependency>
<groupId>com.whaleal.icefrog</groupId>
<artifactId>icefrog-core</artifactId>
<version>${icefrog.version}</version>
</dependency>

<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
<version>${spring.version}</version>
</dependency>

</dependencies>

</project>
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import com.whaleal.mars.bean.Articles;
import com.whaleal.mars.core.Mars;
import com.whaleal.mars.service.ITransactionService;
import com.whaleal.mars.session.MarsSessionImpl;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
Expand Down

0 comments on commit 4356695

Please sign in to comment.