Skip to content
Snippets Groups Projects
Commit 7b47787f authored by izabel's avatar izabel
Browse files

fix: serialization problem

SVN: 17601
parent 371c7cff
No related branches found
No related tags found
No related merge requests found
...@@ -26,9 +26,15 @@ import com.google.gwt.user.client.rpc.IsSerializable; ...@@ -26,9 +26,15 @@ import com.google.gwt.user.client.rpc.IsSerializable;
public class ChannelDescription implements IsSerializable public class ChannelDescription implements IsSerializable
{ {
private final String code; private String code;
private final String label; private String label;
// for GWT
@SuppressWarnings("unused")
private ChannelDescription()
{
}
public ChannelDescription(String name) public ChannelDescription(String name)
{ {
......
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