Skip to content

Commit

Permalink
Merge pull request #522 from stuartwdouglas/rc11-fixes
Browse files Browse the repository at this point in the history
Fixes for Graal RC11
  • Loading branch information
stuartwdouglas authored Jan 16, 2019
2 parents a620e2a + 9f28ff0 commit 4fee31a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
final class TimingReplacement {

@Alias
private static volatile long bootStartTime = -1;
private static volatile long bootStartTime;

@Substitute
public static void mainStarted() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@
final class ConfigurationInfoSubstitution {

@Alias
private static String sourceId = "unknown";
private static String sourceId;
@Alias
private static String propertiesFile = "arjuna-properties.xml";
private static String propertiesFile;
@Alias
private static String buildId = "arjuna-builder";
private static String buildId;
@Alias
private static boolean isInitialized = false;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
public final class ChannelsSubstitution {

@Delete()
private static final ByteBuffer DRAIN_BUFFER = null;
private static ByteBuffer DRAIN_BUFFER = null;

/**
* Attempt to drain the given number of bytes from the stream source channel.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ private TrueColorHolder() {}
final class Target_ColorPatternFormatter {

@Delete
static final boolean trueColor = false;
static boolean trueColor = false;

@Substitute
static boolean isTrueColor() {
Expand Down

0 comments on commit 4fee31a

Please sign in to comment.