Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gjjs-bd-common
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
s_guodong
gjjs-bd-common
Commits
ee9542a7
Commit
ee9542a7
authored
Nov 28, 2022
by
s_guodong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修复bug
parent
dfdce68a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
MyBatisDaoSession.java
...com/brilliance/mda/support/mybatis/MyBatisDaoSession.java
+2
-2
AbstractAutoCompileEmitter.java
.../driver/compile/component/AbstractAutoCompileEmitter.java
+3
-3
No files found.
gjjs-bd-mybatis-support/src/main/java/com/brilliance/mda/support/mybatis/MyBatisDaoSession.java
View file @
ee9542a7
...
...
@@ -313,7 +313,7 @@ public class MyBatisDaoSession extends AbstractDaoSession implements IDaoSession
if
(
list
==
null
||
list
.
size
()
==
0
)
{
setNoMoreRow
();
}
return
new
ArrayList
<>();
return
new
ArrayList
<>(
list
);
}
private
<
T
>
List
<
T
>
dyncRead
(
Class
<
T
>
clazz
,
Map
params
)
{
...
...
@@ -323,7 +323,7 @@ public class MyBatisDaoSession extends AbstractDaoSession implements IDaoSession
if
(
list
==
null
||
list
.
size
()
==
0
)
{
setNoMoreRow
();
}
return
new
ArrayList
<>();
return
new
ArrayList
<>(
list
);
}
public
static
class
ResultSet
{
...
...
gjjs-bd-runtime/src/main/java/com/brilliance/mda/runtime/mda/driver/compile/component/AbstractAutoCompileEmitter.java
View file @
ee9542a7
...
...
@@ -29,9 +29,9 @@ public abstract class AbstractAutoCompileEmitter extends AbstractRuleEmitter {
}
if
(
target
!=
null
){
target
=
getRealPath
(
target
);
if
(
target
.
charAt
(
0
)
==
'.'
||
target
.
charAt
(
0
)
==
'\\'
)
{
target
=
target
.
substring
(
1
);
}
//
if(target.charAt(0) == '.' || target.charAt(0) == '\\') {
//
target = target.substring(1);
//
}
MdaEnv
.
getContext
().
pushEventPath
(
target
);
}
List
<
RuleItem
>
ruleItemList
=
null
;
...
...
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