I'm pulling in a library that also uses T5, and in it's "module" class, it contains the following method:
@ServiceId (Symbols.SOME_SYMBOL)
public static Something buildThisThing(SomeObj someObj)
{
......
}
In the library, this service is injected into the constructor of another
service (@InjectService(TheModule.Symbols.SOME_SYMBOL) Something something).
How can I override the SOME_SYMBOL service implementation in my local code?
