mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-14 17:06:16 +00:00
Merge pull request #7237 from APriestman/fixNormalizationCutAndPasteErrors
Fix cut-and-paste errors in CorrelationAttributeNormalizationException
This commit is contained in:
commit
d77e681b5c
@ -282,7 +282,7 @@ final public class CorrelationAttributeNormalizer {
|
|||||||
if (imsiWithoutSeperators.matches(validImsiRegex)) {
|
if (imsiWithoutSeperators.matches(validImsiRegex)) {
|
||||||
return imsiWithoutSeperators;
|
return imsiWithoutSeperators;
|
||||||
} else {
|
} else {
|
||||||
throw new CorrelationAttributeNormalizationException("Data provided was not a valid Imsi. : " + data);
|
throw new CorrelationAttributeNormalizationException("Data provided was not a valid IMSI. : " + data);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -306,7 +306,7 @@ final public class CorrelationAttributeNormalizer {
|
|||||||
if (macWithoutSeperators.matches(validMacRegex)) {
|
if (macWithoutSeperators.matches(validMacRegex)) {
|
||||||
return macWithoutSeperators;
|
return macWithoutSeperators;
|
||||||
} else {
|
} else {
|
||||||
throw new CorrelationAttributeNormalizationException("Data provided was not a valid Imsi. : " + data);
|
throw new CorrelationAttributeNormalizationException("Data provided was not a valid MAC address. : " + data);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -335,7 +335,7 @@ final public class CorrelationAttributeNormalizer {
|
|||||||
if (imeiWithoutSeperators.matches(validImeiRegex)) {
|
if (imeiWithoutSeperators.matches(validImeiRegex)) {
|
||||||
return imeiWithoutSeperators;
|
return imeiWithoutSeperators;
|
||||||
} else {
|
} else {
|
||||||
throw new CorrelationAttributeNormalizationException("Data provided was not a valid Imsi. : " + data);
|
throw new CorrelationAttributeNormalizationException("Data provided was not a valid IMEI. : " + data);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user