Browse Source

improve toString for debuging purpose

git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1158135 13f79535-47bb-0310-9956-ffa450edef68
tags/archiva-1.4-M1
Olivier Lamy 13 years ago
parent
commit
5c5c959a14

+ 4
- 1
archiva-modules/archiva-base/archiva-indexer/src/main/java/org/apache/archiva/indexer/search/SearchResultHit.java View File

@@ -202,6 +202,9 @@ public class SearchResultHit
{
return "SearchResultHit{" + "context='" + context + '\'' + ", url='" + url + '\'' + ", groupId='" + groupId
+ '\'' + ", artifactId='" + artifactId + '\'' + ", version='" + version + '\'' + ", repositoryId='"
+ repositoryId + '\'' + ", versions=" + versions + '}';
+ repositoryId + '\'' + ", versions=" + versions + ", bundleVersion='" + bundleVersion + '\''
+ ", bundleSymbolicName='" + bundleSymbolicName + '\'' + ", bundleExportPackage='" + bundleExportPackage
+ '\'' + ", bundleExportService='" + bundleExportService + '\'' + '}';
}

}

Loading…
Cancel
Save