comparison jvmci/jdk.vm.ci.hotspot/src/jdk/vm/ci/hotspot/HotSpotResolvedObjectType.java @ 24138:b01354ea98ec

bring jvmci-8 more into sync with jvmci-9
author Doug Simon <doug.simon@oracle.com>
date Mon, 12 Jun 2017 15:23:09 +0200
parents f272ef93c3a3
children
comparison
equal deleted inserted replaced
24137:6523380966cd 24138:b01354ea98ec
111 * Gets the fingerprint for this type. 111 * Gets the fingerprint for this type.
112 * 112 *
113 * @return the value of the fingerprint ({@code 0} for arrays and synthetic classes or if the VM 113 * @return the value of the fingerprint ({@code 0} for arrays and synthetic classes or if the VM
114 * does not support fingerprints) 114 * does not support fingerprints)
115 */ 115 */
116 default long getFingerprint() { 116 long getFingerprint();
117 return 0L;
118 }
119 } 117 }