--- old/test/hotspot/jtreg/runtime/valhalla/valuetypes/ValueTypeDensity.java 2018-03-05 10:57:21.036601627 -0500 +++ new/test/hotspot/jtreg/runtime/valhalla/valuetypes/ValueTypeDensity.java 2018-03-05 10:57:20.748595621 -0500 @@ -76,16 +76,16 @@ final short day; LocalDateValue() { - this.year = 0; - this.month = 0; - this.day = 0; + year = 0; + month = 0; + day = 0; } public int getYear() { return year; } public short getMonth() { return month; } public short getDay() { return day; } - __ValueFactory public static LocalDateValue create(int year, short month, short day) { + public static LocalDateValue create(int year, short month, short day) { LocalDateValue localDate = __MakeDefault LocalDateValue(); localDate.year = year; localDate.month = month; @@ -101,10 +101,10 @@ final int nano; LocalTimeValue() { - this.hour = 0; - this.minute = 0; - this.second = 0; - this.nano = 0; + hour = 0; + minute = 0; + second = 0; + nano = 0; } public byte getHour() { return hour; } @@ -112,7 +112,7 @@ public byte getSecond() { return second; } public int getNano() { return nano; } - __ValueFactory public static LocalTimeValue create(byte hour, byte minute, byte second, int nano) { + public static LocalTimeValue create(byte hour, byte minute, byte second, int nano) { LocalTimeValue localTime = __MakeDefault LocalTimeValue(); localTime.hour = hour; localTime.minute = minute; @@ -141,7 +141,7 @@ public byte getSecond() { return time.second; } public int getNano() { return time.nano; } - __ValueFactory public static LocalDateTimeValue create(LocalDateValue date, LocalTimeValue time) { + public static LocalDateTimeValue create(LocalDateValue date, LocalTimeValue time) { LocalDateTimeValue localDateTime = __MakeDefault LocalDateTimeValue(); localDateTime.date = date; localDateTime.time = time;