There was a typo in the Extensions class constant that identified cached
hash value in the DataContainer metadata map compared to the maven graph
builder plug-in.
refs #7806
Change-Id: I21e99108adfa2b1e9307127ffd4be7127f852812
* {@link TransferableGraph1} instance in the metadata map of the
* <code>DataContainer</code> containing the TG.
*/
- public final static String CACHED_HASHCODE = "cached.hashCode";
+ public final static String CACHED_HASHCODE = "cached.hashcode";
final public static String CLUSTERING = "clustering";
final public static String CLUSTER_SETS = "clusterSets";
private static GraphBundleEx tryGetOnDemandGraph(Bundle bundle, URL url) throws IOException {
try {
Integer cachedHash = readCachedHash(url);
- System.out.println("Read cached hashcode from " + bundle + ": " + cachedHash);
if (cachedHash == null)
-// if (true)
return null;
Supplier<TransferableGraph1> graphSource = () -> {