Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
guns-vip
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
chenjunxiong
guns-vip
Commits
3707b074
Commit
3707b074
authored
Nov 05, 2018
by
fengshuonan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
解决rememberMe失效问题
parent
1f497215
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
src/main/java/cn/stylefeng/guns/core/common/node/MenuNode.java
+3
-2
No files found.
src/main/java/cn/stylefeng/guns/core/common/node/MenuNode.java
View file @
3707b074
...
...
@@ -17,6 +17,7 @@ package cn.stylefeng.guns.core.common.node;
import
cn.stylefeng.roses.kernel.model.enums.YesOrNotEnum
;
import
java.io.Serializable
;
import
java.util.*
;
/**
...
...
@@ -24,7 +25,7 @@ import java.util.*;
* @Description 菜单的节点
* @date 2016年12月6日 上午11:34:17
*/
public
class
MenuNode
implements
Comparable
{
public
class
MenuNode
implements
Comparable
,
Serializable
{
/**
* 节点id
...
...
@@ -245,7 +246,7 @@ public class MenuNode implements Comparable {
if
(
n
<
0
)
{
return
menuList
;
}
else
{
return
mergeList
(
menuList
.
subList
(
0
,
n
+
1
),
menuList
.
get
(
n
).
getLevels
(),
currentMap
);
return
mergeList
(
new
ArrayList
<>(
menuList
.
subList
(
0
,
n
+
1
)
),
menuList
.
get
(
n
).
getLevels
(),
currentMap
);
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment