@@ -423,20 +423,6 @@ public static long getObjectSize(Object o) {
423
423
return Unsafe .getUnsafe ().getObjectSize (o );
424
424
}
425
425
426
- /**
427
- * Returns a new Object implementing the {@code IdentityObject} interface.
428
- * The object is a unique {@link IdentityObject} suitable for all purposes
429
- * for which {@code new Object{}} was used including synchronization,
430
- * mutexes and unique placeholders.
431
- *
432
- * @return a new Object implementing the IdentityObject interface
433
- * @since Valhalla
434
- */
435
- public static IdentityObject newIdentity () {
436
- // Return a new instance of an anonymous inner class.
437
- return new IdentityObject () { };
438
- }
439
-
440
426
/**
441
427
* Checks if the {@code index} is within the bounds of the range from
442
428
* {@code 0} (inclusive) to {@code length} (exclusive).
@@ -512,4 +498,15 @@ long checkFromToIndex(long fromIndex, long toIndex, long length) {
512
498
long checkFromIndexSize (long fromIndex , long size , long length ) {
513
499
return Preconditions .checkFromIndexSize (fromIndex , size , length , null );
514
500
}
501
+ /**
502
+ * {@return a new instance of an unspecified class}
503
+ * The object has a unique identity; no other references to it exist.
504
+ * It can be used for synchronization, or where a placeholder Object is needed.
505
+ * Use this method to avoid relying on the {@linkplain Object#Object() Object constructor}.
506
+ *
507
+ * @since 17
508
+ */
509
+ public static Object newIdentity () {
510
+ return new Object () {};
511
+ }
515
512
}
0 commit comments