Skip to content
This repository was archived by the owner on Sep 15, 2021. It is now read-only.

Commit 558a744

Browse files
author
Albert Schimpf
committed
Bumped API and adjusted Debugger
1 parent 527599c commit 558a744

File tree

10 files changed

+4
-4
lines changed

10 files changed

+4
-4
lines changed
58.8 KB
Binary file not shown.

libs/classgraph-4.8.47.jar

-456 KB
Binary file not shown.

libs/classgraph-4.8.87.jar

494 KB
Binary file not shown.
151 KB
Binary file not shown.

libs/core-plugins-0.13.0.jar

223 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.

scraper-plugins-debugger/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44
id("de.jjohannes.extra-java-module-info") version "0.1"
55
}
66

7-
version = '0.2.0'
7+
version = '0.3.0'
88

99
extraJavaModuleInfo {
1010
module("Java-WebSocket-1.4.0.jar", "Java.Websocket", "1.4.0") {

scraper-plugins-debugger/src/main/java/scraper/plugins/debugger/FlowMapDTO.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ public class FlowMapDTO {
2121
public String getFlowId() { return flowId; }
2222
public Integer getParentSequence() { return parentSequence; }
2323

24-
public FlowMapDTO(FlowMap o ) {
25-
o.keySet().forEach(k -> content.put(k, o.get(k).orElse(null)));
24+
public FlowMapDTO(FlowMap o) {
25+
o.forEach((l,v) -> content.put(l.getLocation().getRaw().toString(), v));
2626
if(o.getParentId().isPresent()) {
2727
parentId = o.getParentId().get().toString();
2828
this.parentSequence = o.getParentSequence().get();

scraper-plugins-persistent-proxy-scores/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ plugins {
33
id 'java-library-distribution'
44
}
55

6-
version = '0.2.0'
6+
version = '0.3.0'
77

0 commit comments

Comments
 (0)