mirror of https://github.com/apache/maven.git
o Added toString() to ease debugging
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@751068 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
a3a2e77da3
commit
46dc31c0fe
|
@ -382,14 +382,20 @@ public class PomClassicDomainModel implements InputStreamDomainModel
|
|||
}
|
||||
}
|
||||
|
||||
public boolean isMostSpecialized()
|
||||
{
|
||||
return isMostSpecialized;
|
||||
}
|
||||
public boolean isMostSpecialized()
|
||||
{
|
||||
return isMostSpecialized;
|
||||
}
|
||||
|
||||
public void setMostSpecialized(boolean isMostSpecialized)
|
||||
{
|
||||
this.isMostSpecialized = isMostSpecialized;
|
||||
}
|
||||
public void setMostSpecialized( boolean isMostSpecialized )
|
||||
{
|
||||
this.isMostSpecialized = isMostSpecialized;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString()
|
||||
{
|
||||
return String.valueOf( id );
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue