Skip to content
Snippets Groups Projects
Commit bac02a39 authored by Hendrik Buschmeier's avatar Hendrik Buschmeier
Browse files

ipaaca-java: Fixed NullPointerException in BufferConfigurationBuilder.

parent fb367438
No related branches found
No related tags found
No related merge requests found
...@@ -33,6 +33,7 @@ ...@@ -33,6 +33,7 @@
package ipaaca; package ipaaca;
import java.util.HashSet;
import java.util.Set; import java.util.Set;
...@@ -50,6 +51,7 @@ class BufferConfiguration { ...@@ -50,6 +51,7 @@ class BufferConfiguration {
this._owningComponentName = owningComponentName; this._owningComponentName = owningComponentName;
this._channel = "default"; this._channel = "default";
this._resendActive = false; this._resendActive = false;
this._category_interests = new HashSet<String>();
} }
public String getOwningComponentName() { public String getOwningComponentName() {
......
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
package ipaaca; package ipaaca;
class BufferConfigurationBuilder extends BufferConfiguration { public class BufferConfigurationBuilder extends BufferConfiguration {
public BufferConfigurationBuilder(String owningComponentName) { public BufferConfigurationBuilder(String owningComponentName) {
super(owningComponentName); super(owningComponentName);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment