This is the codeAbility Sharing Platform! Learn more about the codeAbility Sharing Platform.

Skip to content
Snippets Groups Projects
Commit caba5425 authored by Daniel Rainer's avatar Daniel Rainer
Browse files

Fix SearchResultsDTO.toString

parent 179cd3fc
Branches
Tags
2 merge requests!17Initial Merge to Prepare Release 1.0.0,!2Add gitlab metadata
......@@ -146,7 +146,7 @@ public class SearchResultsDTO {
// default constructor
}
private String metadataVersion; // just for YAML testdata reader
private String metadataVersion; // just for YAML test data reader
private String title;
private String identifier;
private String version;
......@@ -444,14 +444,14 @@ public class SearchResultsDTO {
@Override
public String toString() {
return "SearchResultDTO [audience=" + audience + ", collectionContent=" + collectionContent
return "SearchResultDTO [audience=" + audience + ", collectionContent=" + Arrays.toString(collectionContent)
+ ", contributor=" + Arrays.toString(contributor) + ", creator=" + Arrays.toString(creator)
+ ", deprecated=" + deprecated + ", description=" + description + ", difficulty=" + difficulty
+ ", educationLevel=" + educationLevel + ", format=" + format + ", gitURL=" + gitURL
+ ", educationLevel=" + educationLevel + ", format=" + Arrays.toString(format) + ", gitURL=" + gitURL
+ ", identifier=" + identifier + ", image=" + image + ", keyword=" + Arrays.toString(keyword)
+ ", language=" + Arrays.toString(language) + ", license=" + license + ", metadataVersion="
+ metadataVersion + ", programmingLanguage=" + Arrays.toString(programmingLanguage) + ", publisher="
+ Arrays.toString(publisher) + ", repositoryURL=" + repositoryURL + ", requires=" + requires
+ Arrays.toString(publisher) + ", repositoryURL=" + repositoryURL + ", requires=" + Arrays.toString(requires)
+ ", source=" + Arrays.toString(source) + ", status=" + status + ", structure=" + structure
+ ", timeRequired=" + timeRequired + ", title=" + title + ", type=" + type + ", version=" + version
+ "]";
......@@ -643,7 +643,7 @@ public class SearchResultsDTO {
/**
* returns the number of all hits.
*
*
* @return
*/
public long getHitCount() {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment