Skip to content
Snippets Groups Projects
Verified Commit 40b4a0eb authored by Théo Pirkl's avatar Théo Pirkl :nail_care:
Browse files

Merge remote-tracking branch 'origin/gui-mq' into gui-mq

parents 26dd6d06 52ac8f67
No related branches found
No related tags found
1 merge request!21*poof* final version
package ch.hepia.mq;
import java.io.Serializable;
public class DummyClass implements Serializable{
private static final long serialVersionUID = 0xAEF34565672L;
private String prop0;
public int prop1;
public DummyClass(){
this.prop0 = "élè";
this.prop1 = -12;
}
public String getProp0(){
return this.prop0;
}
}
\ No newline at end of file
package ch.hepia.mq;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.util.Arrays;
import java.util.function.Consumer;
import java.util.*;
public class TesterClass {
public static void main(String[] argv) throws Exception{
}
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment