Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
T
Thick-Common
Project
Project
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
潘栩锋
Thick-Common
Commits
0bd93ceb
Commit
0bd93ceb
authored
Jun 04, 2020
by
潘栩锋
🚴
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修复 FObjBase.Reflect 写错了 ,continue 写了 return
parent
69dd847a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
Reflect_Proxy.cs
Project.FLY.FObjSys/FObjBaseReflect/Reflect_Proxy.cs
+2
-2
Reflect_SeviceClient.cs
Project.FLY.FObjSys/FObjBaseReflect/Reflect_SeviceClient.cs
+4
-4
No files found.
Project.FLY.FObjSys/FObjBaseReflect/Reflect_Proxy.cs
View file @
0bd93ceb
...
...
@@ -80,10 +80,10 @@ namespace FObjBase.Reflect
{
var
pushAttribute
=
eventInfo
.
GetCustomAttribute
<
PushAttribute
>();
if
(
pushAttribute
==
null
)
return
;
continue
;
if
(
anyEvents
.
Any
(
ae
=>
ae
.
eventName
==
eventInfo
.
Name
))
return
;
//已经添加了
continue
;
//已经添加了
var
anyEvent
=
new
AnyEvent
()
{
...
...
Project.FLY.FObjSys/FObjBaseReflect/Reflect_SeviceClient.cs
View file @
0bd93ceb
...
...
@@ -149,10 +149,10 @@ namespace FObjBase.Reflect
{
var
pushAttribute
=
eventInfo
.
GetCustomAttribute
<
PushAttribute
>();
if
(
pushAttribute
==
null
)
return
;
continue
;
if
(
anyEvents
.
Any
(
ae
=>
ae
.
name
==
eventInfo
.
Name
))
return
;
//已经添加了
continue
;
//已经添加了
var
anyEvent
=
new
AnyEvent
()
{
...
...
@@ -183,10 +183,10 @@ namespace FObjBase.Reflect
{
var
callAttribute
=
methodInfo
.
GetCustomAttribute
<
CallAttribute
>();
if
(
callAttribute
==
null
)
return
;
continue
;
if
(
anyCalls
.
Any
(
ae
=>
ae
.
name
==
methodInfo
.
Name
))
return
;
//已经添加了
continue
;
//已经添加了
var
anyCall
=
new
AnyCall
()
{
...
...
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