Update BinaryInspector.java

This commit is contained in:
vshcherb 2015-02-19 14:01:20 +01:00
parent 217880009b
commit 630105c0f9

View file

@ -849,7 +849,7 @@ public class BinaryInspector {
new ResultMatcher<Amenity>() { new ResultMatcher<Amenity>() {
@Override @Override
public boolean publish(Amenity object) { public boolean publish(Amenity object) {
println(object.getType().toString() + " : " + object.getSubType() + " " + object.getName() + " " + object.getLocation() + " id=" + (object.getId() >> 1) + " " + println(object.getType().getKeyName() + " : " + object.getSubType() + " " + object.getName() + " " + object.getLocation() + " id=" + (object.getId() >> 1) + " " +
object.getAdditionalInfo()); object.getAdditionalInfo());
return false; return false;
} }