add toString to NoopLimitSpec

This commit is contained in:
Xavier Léauté 2013-07-18 11:45:30 -07:00
parent 41347c82bb
commit d1e548aa32
1 changed files with 6 additions and 0 deletions

View File

@ -21,4 +21,10 @@ public class NoopLimitSpec implements LimitSpec
{
return Functions.identity();
}
@Override
public String toString()
{
return "NoopLimitSpec";
}
}