Polished toString() method of Index.

This commit is contained in:
Oliver Gierke
2011-03-25 13:07:49 +01:00
parent 511128f4e7
commit 0fc3c9d6d3

View File

@@ -90,5 +90,9 @@ public class Index implements IndexDefinition {
}
return dbo;
}
@Override
public String toString() {
return String.format("Index: %s - Options: %s", getIndexObject(), getIndexOptions());
}
}