skadistats / clarity-examples

Example code for clarity
BSD 3-Clause "New" or "Revised" License
113 stars 37 forks source link

Minor code change #34

Closed ganesshkumar closed 7 years ago

ganesshkumar commented 7 years ago

Making it compilable code. With Runner runner = new SimpleRunner(source); it is not compilable code. The line runner.runWith(processor) throws can not find symbol error. runner has to be type-casted or declared as SimpleRunner to make it compilable code.

spheenik commented 7 years ago

You're right, I refactored Runner and there's no runWith() on it anymore. Thanks for spotting!