package com.qianwen.core.swagger; import java.util.Properties; import com.qianwen.core.launch.service.LauncherService; import org.springframework.boot.builder.SpringApplicationBuilder; /* loaded from: blade-starter-swagger-9.3.0.0-SNAPSHOT.jar:org/springblade/core/swagger/SwaggerLauncherServiceImpl.class */ public class SwaggerLauncherServiceImpl implements LauncherService { public void launcher(SpringApplicationBuilder builder, String appName, String profile, boolean isLocalDev) { Properties props = System.getProperties(); if (profile.equals("prod")) { props.setProperty("knife4j.production", "true"); } props.setProperty("knife4j.enable", "true"); } public int getOrder() { return Integer.MAX_VALUE; } }