From 85bb45834b1a2fd993d9f8653c48d14efc12a59e Mon Sep 17 00:00:00 2001
From: yangys <y_ys79@sina.com>
Date: 星期四, 18 四月 2024 12:09:46 +0800
Subject: [PATCH] 去掉无用注释
---
smart-starter-swagger/src/main/java/com/qianwen/core/swagger/SwaggerProperties.java | 32 ++++++++++++++++----------------
1 files changed, 16 insertions(+), 16 deletions(-)
diff --git a/smart-starter-swagger/src/main/java/com/qianwen/core/swagger/SwaggerProperties.java b/smart-starter-swagger/src/main/java/com/qianwen/core/swagger/SwaggerProperties.java
index e3bbd75..75153b3 100644
--- a/smart-starter-swagger/src/main/java/com/qianwen/core/swagger/SwaggerProperties.java
+++ b/smart-starter-swagger/src/main/java/com/qianwen/core/swagger/SwaggerProperties.java
@@ -3,20 +3,20 @@
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
+
import org.springframework.boot.context.properties.ConfigurationProperties;
@ConfigurationProperties("swagger")
-/* loaded from: blade-starter-swagger-9.3.0.0-SNAPSHOT.jar:org/springblade/core/swagger/SwaggerProperties.class */
public class SwaggerProperties {
- private List<String> basePackages = new ArrayList(Collections.singletonList("org.springblade"));
- private List<String> basePath = new ArrayList();
- private List<String> excludePath = new ArrayList();
- private String title = "BladeX 鎺ュ彛鏂囨。绯荤粺";
- private String description = "BladeX 鎺ュ彛鏂囨。绯荤粺";
- private String version = "9.3.0.0-SNAPSHOT";
- private String license = "Powered By BladeX";
- private String licenseUrl = "https://bladex.vip";
- private String termsOfServiceUrl = "https://bladex.vip";
+ private List<String> basePackages = new ArrayList<>(Collections.singletonList("com.qianwen"));
+ private List<String> basePath = new ArrayList<>();
+ private List<String> excludePath = new ArrayList<>();
+ private String title = "鏅鸿兘鍒堕�犳帴鍙f枃妗g郴缁�";
+ private String description = "smart API 鎺ュ彛鏂囨。";
+ private String version = "1.0.0";
+ private String license = "Powered By Qianwen";
+ private String licenseUrl = "https://no";
+ private String termsOfServiceUrl = "https://no";
private String host = "";
private Contact contact = new Contact();
private Authorization authorization = new Authorization();
@@ -267,11 +267,11 @@
return this.authorization;
}
- /* loaded from: blade-starter-swagger-9.3.0.0-SNAPSHOT.jar:org/springblade/core/swagger/SwaggerProperties$Contact.class */
+
public static class Contact {
- private String name = "chillzhuang";
+ private String name = "abc";
private String url = "https://gitee.com/smallc";
- private String email = "smallchill@163.com";
+ private String email = "abc@sina.com.com";
public void setName(final String name) {
this.name = name;
@@ -353,9 +353,9 @@
public static class Authorization {
private String name = "";
private String authRegex = "^.*$";
- private List<AuthorizationScope> authorizationScopeList = new ArrayList();
- private List<AuthorizationApiKey> authorizationApiKeyList = new ArrayList();
- private List<String> tokenUrlList = new ArrayList();
+ private List<AuthorizationScope> authorizationScopeList = new ArrayList<>();
+ private List<AuthorizationApiKey> authorizationApiKeyList = new ArrayList<>();
+ private List<String> tokenUrlList = new ArrayList<>();
public void setName(final String name) {
this.name = name;
--
Gitblit v1.9.3