作者 RuoYi

删除无用的实例演示开关配置

@@ -6,8 +6,6 @@ ruoyi: @@ -6,8 +6,6 @@ ruoyi:
6 version: 3.8.6 6 version: 3.8.6
7 # 版权年份 7 # 版权年份
8 copyrightYear: 2023 8 copyrightYear: 2023
9 - # 实例演示开关  
10 - demoEnabled: true  
11 # 文件路径 示例( Windows配置D:/ruoyi/uploadPath,Linux配置 /home/ruoyi/uploadPath) 9 # 文件路径 示例( Windows配置D:/ruoyi/uploadPath,Linux配置 /home/ruoyi/uploadPath)
12 profile: D:/ruoyi/uploadPath 10 profile: D:/ruoyi/uploadPath
13 # 获取ip地址开关 11 # 获取ip地址开关
@@ -21,9 +21,6 @@ public class RuoYiConfig @@ -21,9 +21,6 @@ public class RuoYiConfig
21 /** 版权年份 */ 21 /** 版权年份 */
22 private String copyrightYear; 22 private String copyrightYear;
23 23
24 - /** 实例演示开关 */  
25 - private boolean demoEnabled;  
26 -  
27 /** 上传路径 */ 24 /** 上传路径 */
28 private static String profile; 25 private static String profile;
29 26
@@ -63,16 +60,6 @@ public class RuoYiConfig @@ -63,16 +60,6 @@ public class RuoYiConfig
63 this.copyrightYear = copyrightYear; 60 this.copyrightYear = copyrightYear;
64 } 61 }
65 62
66 - public boolean isDemoEnabled()  
67 - {  
68 - return demoEnabled;  
69 - }  
70 -  
71 - public void setDemoEnabled(boolean demoEnabled)  
72 - {  
73 - this.demoEnabled = demoEnabled;  
74 - }  
75 -  
76 public static String getProfile() 63 public static String getProfile()
77 { 64 {
78 return profile; 65 return profile;