Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 148461 | Differences between
and this patch

Collapse All | Expand All

(-)src-arm/org/eclipse/tptp/trace/arm/internal/correlator/TPTPArmCorrelatorImpl.java (-5 / +5 lines)
Lines 119-127 Link Here
119
		_racIP = _agentMetaData.getRACIp();
119
		_racIP = _agentMetaData.getRACIp();
120
		_racPort = _agentMetaData.getRACPort();
120
		_racPort = _agentMetaData.getRACPort();
121
121
122
		_agentUUID = _agentMetaData.getAgentUUID().toUpperCase();
122
		_agentUUID = _agentMetaData.getAgentUUID();
123
		_processUUID = _agentMetaData.getProcessUUID().toUpperCase();
123
		_processUUID = _agentMetaData.getProcessUUID();
124
		_nodeUUID = _agentMetaData.getNodeUUID().toUpperCase();
124
		_nodeUUID = _agentMetaData.getNodeUUID();
125
125
126
		/* This correlator is the root correlator */
126
		/* This correlator is the root correlator */
127
		_rootRacIPLength = _racIPLength;
127
		_rootRacIPLength = _racIPLength;
Lines 316-322 Link Here
316
		byte[] guid = new byte[CORRELATOR_UUID];
316
		byte[] guid = new byte[CORRELATOR_UUID];
317
		ByteBuffer buffer = ByteBuffer.wrap(guid);
317
		ByteBuffer buffer = ByteBuffer.wrap(guid);
318
318
319
		String[] uuidTokens = uuid.toUpperCase().split("-"); //$NON-NLS-1$
319
		String[] uuidTokens = uuid.split("-"); //$NON-NLS-1$
320
		if (uuid.startsWith("UUID-")) { //$NON-NLS-1$
320
		if (uuid.startsWith("UUID-")) { //$NON-NLS-1$
321
			/* NON-Windows */
321
			/* NON-Windows */
322
322
Lines 450-456 Link Here
450
			uuid += padCharacters(Integer.toHexString(buffer.getInt()), 8);
450
			uuid += padCharacters(Integer.toHexString(buffer.getInt()), 8);
451
		}
451
		}
452
452
453
		return uuid.toUpperCase();
453
		return uuid;
454
	}
454
	}
455
455
456
	/**
456
	/**

Return to bug 148461