Skip to content

Commit 143a084

Browse files
committed
Gate simplified; minor fixes
1 parent 3ee2611 commit 143a084

File tree

9 files changed

+7
-10
lines changed

9 files changed

+7
-10
lines changed

build.gradle

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,10 @@ buildscript {
66
}
77

88
dependencies {
9-
<<<<<<< Updated upstream
9+
1010
classpath "io.codearte.gradle.nexus:gradle-nexus-staging-plugin:0.30.0"
11-
//classpath 'com.github.rholder:gradle-one-jar:1.0.4'
12-
13-
=======
14-
classpath "io.codearte.gradle.nexus:gradle-nexus-staging-plugin:0.5.3"
15-
//classpath 'com.github.rholder:gradle-one-jar:1.0.4'
16-
>>>>>>> Stashed changes
11+
//classpath 'com.github.rholder:gradle-one-jar:1.0.4'
12+
1713
}
1814
}
1915

290 KB
Binary file not shown.
248 KB
Binary file not shown.
713 KB
Binary file not shown.
261 KB
Binary file not shown.

build/libs/javafbp-4.1.13.jar

276 KB
Binary file not shown.

build/scripts/javafbp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ case "`uname`" in
8080
;;
8181
esac
8282

83-
CLASSPATH=$APP_HOME/lib/javafbp-4.1.12.jar
83+
CLASSPATH=$APP_HOME/lib/javafbp-4.1.13.jar
8484

8585

8686
# Determine the Java command to use to start the JVM.

build/scripts/javafbp.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ goto fail
6767
:execute
6868
@rem Setup the command line
6969

70-
set CLASSPATH=%APP_HOME%\lib\javafbp-4.1.12.jar
70+
set CLASSPATH=%APP_HOME%\lib\javafbp-4.1.13.jar
7171

7272

7373
@rem Execute javafbp

src/main/java/com/jpaulmorrison/fbp/core/components/routing/Gate.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,9 @@ protected void execute() {
5959
Packet<?> rp;
6060
while ((rp = in.receive()) != null) {
6161
out.send(rp);
62-
}
6362

63+
}
64+
6465
}
6566

6667
@Override

0 commit comments

Comments
 (0)