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
2 merge requests!17Initial Merge to Prepare Release 1.0.0,!2Add gitlab metadata
...@@ -146,7 +146,7 @@ public class SearchResultsDTO { ...@@ -146,7 +146,7 @@ public class SearchResultsDTO {
// default constructor // default constructor
} }
private String metadataVersion; // just for YAML testdata reader private String metadataVersion; // just for YAML test data reader
private String title; private String title;
private String identifier; private String identifier;
private String version; private String version;
...@@ -444,14 +444,14 @@ public class SearchResultsDTO { ...@@ -444,14 +444,14 @@ public class SearchResultsDTO {
@Override @Override
public String toString() { 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) + ", contributor=" + Arrays.toString(contributor) + ", creator=" + Arrays.toString(creator)
+ ", deprecated=" + deprecated + ", description=" + description + ", difficulty=" + difficulty + ", 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) + ", identifier=" + identifier + ", image=" + image + ", keyword=" + Arrays.toString(keyword)
+ ", language=" + Arrays.toString(language) + ", license=" + license + ", metadataVersion=" + ", language=" + Arrays.toString(language) + ", license=" + license + ", metadataVersion="
+ metadataVersion + ", programmingLanguage=" + Arrays.toString(programmingLanguage) + ", publisher=" + 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 + ", source=" + Arrays.toString(source) + ", status=" + status + ", structure=" + structure
+ ", timeRequired=" + timeRequired + ", title=" + title + ", type=" + type + ", version=" + version + ", timeRequired=" + timeRequired + ", title=" + title + ", type=" + type + ", version=" + version
+ "]"; + "]";
...@@ -643,7 +643,7 @@ public class SearchResultsDTO { ...@@ -643,7 +643,7 @@ public class SearchResultsDTO {
/** /**
* returns the number of all hits. * returns the number of all hits.
* *
* @return * @return
*/ */
public long getHitCount() { 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