fix double text error in OpConfig toString()

This commit is contained in:
Jonathan Shook 2022-03-09 21:53:15 -06:00
parent aca1f6c737
commit 3ed80963f8

View File

@ -81,6 +81,6 @@ public class OpConfigError extends ActivityInitError {
sb.append(" " + super.getMessage());
}
return sb + super.getMessage();
return sb.toString();
}
}