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

Commit

Permalink
Bumped API and adjusted Debugger
Browse files Browse the repository at this point in the history
  • Loading branch information
Albert Schimpf committed Jul 7, 2020
1 parent 527599c commit 558a744
Show file tree
Hide file tree
Showing 10 changed files with 4 additions and 4 deletions.
Binary file renamed libs/api-0.12.0.jar → libs/api-0.13.1.jar
Binary file not shown.
Binary file removed libs/classgraph-4.8.47.jar
Binary file not shown.
Binary file added libs/classgraph-4.8.87.jar
Binary file not shown.
Binary file renamed libs/core-0.12.0.jar → libs/core-0.13.1.jar
Binary file not shown.
Binary file added libs/core-plugins-0.13.0.jar
Binary file not shown.
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion scraper-plugins-debugger/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
id("de.jjohannes.extra-java-module-info") version "0.1"
}

version = '0.2.0'
version = '0.3.0'

extraJavaModuleInfo {
module("Java-WebSocket-1.4.0.jar", "Java.Websocket", "1.4.0") {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ public class FlowMapDTO {
public String getFlowId() { return flowId; }
public Integer getParentSequence() { return parentSequence; }

public FlowMapDTO(FlowMap o ) {
o.keySet().forEach(k -> content.put(k, o.get(k).orElse(null)));
public FlowMapDTO(FlowMap o) {
o.forEach((l,v) -> content.put(l.getLocation().getRaw().toString(), v));
if(o.getParentId().isPresent()) {
parentId = o.getParentId().get().toString();
this.parentSequence = o.getParentSequence().get();
Expand Down
2 changes: 1 addition & 1 deletion scraper-plugins-persistent-proxy-scores/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ plugins {
id 'java-library-distribution'
}

version = '0.2.0'
version = '0.3.0'

0 comments on commit 558a744

Please sign in to comment.