Skip to content

Commit

Permalink
删除无用的实例演示开关配置
Browse files Browse the repository at this point in the history
  • Loading branch information
yangzongzhuan committed Dec 5, 2023
1 parent 370a299 commit 4235c03
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 15 deletions.
13 changes: 0 additions & 13 deletions src/main/java/com/ruoyi/framework/config/RuoYiConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,6 @@ public class RuoYiConfig
/** 版权年份 */
private String copyrightYear;

/** 实例演示开关 */
private boolean demoEnabled;

/** 上传路径 */
private static String profile;

Expand Down Expand Up @@ -60,16 +57,6 @@ public void setCopyrightYear(String copyrightYear)
this.copyrightYear = copyrightYear;
}

public boolean isDemoEnabled()
{
return demoEnabled;
}

public void setDemoEnabled(boolean demoEnabled)
{
this.demoEnabled = demoEnabled;
}

public static String getProfile()
{
return profile;
Expand Down
2 changes: 0 additions & 2 deletions src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ ruoyi:
version: 3.8.6
# 版权年份
copyrightYear: 2023
# 实例演示开关
demoEnabled: true
# 文件路径 示例( Windows配置D:/ruoyi/uploadPath,Linux配置 /home/ruoyi/uploadPath)
profile: D:/ruoyi/uploadPath
# 获取ip地址开关
Expand Down

0 comments on commit 4235c03

Please sign in to comment.