2829303132333435
/** * @return The singleton instance of this service */ public static synchronized PuppetLintService getInstance() { if(instance == null) instance = new PuppetLintService(Guice.createInjector(new ExternalModule())); return instance; }