Fix id type on SchemaRegistrationResponse

Fixes #739

Use primitive type in `SchemaRegistryClient`
This commit is contained in:
Marius Bogoevici
2016-12-19 00:44:23 -05:00
committed by Ilayaperumal Gopinathan
parent 4d74212932
commit f6073ade89
5 changed files with 7 additions and 7 deletions

View File

@@ -81,7 +81,7 @@ public class StubSchemaRegistryClient implements SchemaRegistryClient {
}
@Override
public String fetch(Integer id) {
public String fetch(int id) {
return this.schemasById.get(id);
}