<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.lingoport.com/index.php?action=history&amp;feed=atom&amp;title=Simple_False_Positive_Handling</id>
	<title>Simple False Positive Handling - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.lingoport.com/index.php?action=history&amp;feed=atom&amp;title=Simple_False_Positive_Handling"/>
	<link rel="alternate" type="text/html" href="https://wiki.lingoport.com/index.php?title=Simple_False_Positive_Handling&amp;action=history"/>
	<updated>2026-04-30T17:37:59Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.43.3</generator>
	<entry>
		<id>https://wiki.lingoport.com/index.php?title=Simple_False_Positive_Handling&amp;diff=94285&amp;oldid=prev</id>
		<title>MaryH: Created page with &quot;A false positive issue is any issue detected by Globalyzer that does not need corrective action. For example, if Globalyzer detects a hard-coded string, it may be that the str...&quot;</title>
		<link rel="alternate" type="text/html" href="https://wiki.lingoport.com/index.php?title=Simple_False_Positive_Handling&amp;diff=94285&amp;oldid=prev"/>
		<updated>2020-01-29T18:13:27Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;A false positive issue is any issue detected by Globalyzer that does not need corrective action. For example, if Globalyzer detects a hard-coded string, it may be that the str...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;A false positive issue is any issue detected by Globalyzer that does not need corrective action. For example, if Globalyzer detects a hard-coded string, it may be that the string is never displayed to an end user, and therefore does not need to be externalized.&lt;br /&gt;
&lt;br /&gt;
There are different ways to tell Globalyzer that a detected issue is a false positive.&lt;br /&gt;
One way is to add a Globalyzer comment on that line of code, effectively telling Globalyzer to ignore the issue.&lt;br /&gt;
&lt;br /&gt;
Here&amp;#039;s a Java code snippet illustrating a string that Globalyzer would detect:&lt;br /&gt;
&lt;br /&gt;
    String marker = &amp;quot;Marker 15&amp;quot;;&lt;br /&gt;
&lt;br /&gt;
By adding the &amp;lt;b&amp;gt;&amp;lt;code&amp;gt;//$NON-NLS-L$&amp;lt;/code&amp;gt;&amp;lt;/b&amp;gt; comment at the end of the line, Globalyzer will now ignore the issue:&lt;br /&gt;
&lt;br /&gt;
    String marker = &amp;quot;Marker 15&amp;quot;; //$NON-NLS-L$ &lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Note: Make sure to use the line comment syntax appropriate for your programming language.&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Once the code is modified and pushed to the source control system, Globalyzer will rescan the file and the issue will be ignored.&lt;br /&gt;
&lt;br /&gt;
See [[False_Positives|here]] for more detailed information on handling false positives.&lt;/div&gt;</summary>
		<author><name>MaryH</name></author>
	</entry>
</feed>