Skip to content

Commit

Permalink
🔥 💚 refactor build (no more jdk8 project)
Browse files Browse the repository at this point in the history
  • Loading branch information
pron committed Jun 1, 2015
1 parent 3b7b760 commit 40d2a81
Show file tree
Hide file tree
Showing 59 changed files with 815 additions and 373 deletions.
367 changes: 280 additions & 87 deletions build.gradle

Large diffs are not rendered by default.

@@ -1,5 +1,9 @@
package co.paralleluniverse.actors;

import co.paralleluniverse.actors.Actor;
import co.paralleluniverse.actors.ActorRef;
import co.paralleluniverse.actors.BasicActor;
import co.paralleluniverse.actors.MailboxConfig;
import co.paralleluniverse.fibers.Fiber;
import co.paralleluniverse.fibers.SuspendExecution;
import co.paralleluniverse.strands.channels.Channels;
Expand Down
Expand Up @@ -13,6 +13,9 @@
*/
package co.paralleluniverse.data.record;

import co.paralleluniverse.data.record.Field;
import co.paralleluniverse.data.record.Record;
import co.paralleluniverse.data.record.RecordType;
import java.util.concurrent.ThreadLocalRandom;
import org.openjdk.jmh.Main;
import org.openjdk.jmh.annotations.Benchmark;
Expand Down
Expand Up @@ -14,10 +14,10 @@

import java.lang.reflect.Method;
import java.lang.reflect.Modifier;
import org.objectweb.asm.ClassWriter;
import org.objectweb.asm.MethodVisitor;
import static org.objectweb.asm.Opcodes.*;
import org.objectweb.asm.Type;
import co.paralleluniverse.asm.ClassWriter;
import co.paralleluniverse.asm.MethodVisitor;
import static co.paralleluniverse.asm.Opcodes.*;
import co.paralleluniverse.asm.Type;

/**
*
Expand Down

This file was deleted.

148 changes: 0 additions & 148 deletions quasar-core-jdk8/build.gradle

This file was deleted.

This file was deleted.

0 comments on commit 40d2a81

Please sign in to comment.