agent/src/jetbrains/buildServer/xmlReportPlugin/parsers/findBugs/messages.xml [3916:3935]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        <ShortDescription>Method doesn't override method in superclass due to wrong package for parameter
        </ShortDescription>
        <LongDescription>{1} doesn't override method in superclass because parameter type {4} doesn't match superclass
            parameter type {5}
        </LongDescription>
        <Details>
            <![CDATA[
  <p> The method in the subclass doesn't override a similar method in a superclass because the type of a parameter doesn't exactly match
the type of the corresponding parameter in the superclass. For example, if you have:</p>

<blockquote>
<pre>
import alpha.Foo;
public class A {
  public int f(Foo x) { return 17; }
}
----
import beta.Foo;
public class B extends A {
  public int f(Foo x) { return 42; }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



agent/src/jetbrains/buildServer/xmlReportPlugin/parsers/findBugs/messages.xml [3949:3968]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        <ShortDescription>Method doesn't override method in superclass due to wrong package for parameter
        </ShortDescription>
        <LongDescription>{1} doesn't override method in superclass because parameter type {4} doesn't match superclass
            parameter type {5}
        </LongDescription>
        <Details>
            <![CDATA[
  <p> The method in the subclass doesn't override a similar method in a superclass because the type of a parameter doesn't exactly match
the type of the corresponding parameter in the superclass. For example, if you have:</p>

<blockquote>
<pre>
import alpha.Foo;
public class A {
  public int f(Foo x) { return 17; }
}
----
import beta.Foo;
public class B extends A {
  public int f(Foo x) { return 42; }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



