Skip to content

Commit

Permalink
修复: ExceptionThrownEvent 中timestamp的类型
Browse files Browse the repository at this point in the history
  • Loading branch information
fanyong920 committed Nov 12, 2024
1 parent d9f9e00 commit e669225
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
<dependency>
<groupId>io.github.fanyong920</groupId>
<artifactId>jvppeteer</artifactId>
<version>2.2.0<version>
<version>2.2.1<version>
</dependency>
```

Expand All @@ -56,7 +56,7 @@ mavenCentral()
然后,您可以将最新版本添加到您的构建中。

```xml
compile "io.github.fanyong920:jvppeteer:2.2.0"
compile "io.github.fanyong920:jvppeteer:2.2.1"
```

#### Logging
Expand Down
2 changes: 1 addition & 1 deletion example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<junit.version>4.13.1</junit.version>
<jvppeteer.version>2.2.0</jvppeteer.version>
<jvppeteer.version>2.2.1</jvppeteer.version>
<slf4j.version>2.0.16</slf4j.version>
</properties>
<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<groupId>io.github.fanyong920</groupId>
<artifactId>jvppeteer</artifactId>
<packaging>jar</packaging>
<version>2.2.0</version>
<version>2.2.1</version>
<name>jvppeteer</name>
<description>java version of puppeteer</description>
<url>https://github.com/fanyong920/jvppeteer</url>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@

import com.ruiyun.jvppeteer.entities.Timestamp;
import com.ruiyun.jvppeteer.entities.ExceptionDetails;
import java.math.BigDecimal;


public class ExceptionThrownEvent {
private Timestamp timestamp;
private BigDecimal timestamp;
private ExceptionDetails exceptionDetails;

public ExceptionThrownEvent() {
Expand All @@ -15,11 +16,11 @@ public ExceptionThrownEvent(ExceptionDetails exceptionDetails) {
this.exceptionDetails = exceptionDetails;
}

public Timestamp getTimestamp() {
public BigDecimal getTimestamp() {
return timestamp;
}

public void setTimestamp(Timestamp timestamp) {
public void setTimestamp(BigDecimal timestamp) {
this.timestamp = timestamp;
}

Expand Down

0 comments on commit e669225

Please sign in to comment.