Skip to content

Commit 86bae66

Browse files
Update Main.java
1 parent 6a35a90 commit 86bae66

File tree

1 file changed

+6
-0
lines changed
  • Sample Open Source Implementations/head

1 file changed

+6
-0
lines changed

Sample Open Source Implementations/head/Main.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
import java.util.Random;
99
import java.util.concurrent.atomic.AtomicLong;
1010

11+
import com.sun.javafx.css.parser.CSSParser;
12+
1113
import ugp.org.SerialX.Scope;
1214
import ugp.org.SerialX.Serializer;
1315
import ugp.org.SerialX.Protocols.SerializationProtocol;
@@ -75,8 +77,12 @@ public Class<? extends Random> applicableFor()
7577
t = System.nanoTime();
7678
System.out.println("Read: " + (t-t0)/1000000);
7779

80+
scope = scope.filter(obj -> obj != null); //This will filter away every null value and variable!
81+
7882
System.out.println(scope.toVarMap());
7983
System.out.println(scope.toValList());
84+
85+
System.out.println((Object)Serializer.LoadFrom(f, 1));
8086
}
8187

8288
//We can invoke static things from SerialX!

0 commit comments

Comments
 (0)