File tree Expand file tree Collapse file tree 2 files changed +17
-12
lines changed
src/main/java/com/github/developframework/expression Expand file tree Collapse file tree 2 files changed +17
-12
lines changed Original file line number Diff line number Diff line change 58
58
</dependency >
59
59
</dependencies >
60
60
61
- <distributionManagement >
62
- <snapshotRepository >
63
- <id >ossrh</id >
64
- <url >https://oss.sonatype.org/content/repositories/snapshots</url >
65
- </snapshotRepository >
66
- <repository >
67
- <id >ossrh</id >
68
- <url >https://oss.sonatype.org/service/local/staging/deploy/maven2/</url >
69
- </repository >
70
- </distributionManagement >
71
-
72
61
<build >
73
62
<plugins >
74
63
<plugin >
135
124
</plugin >
136
125
</plugins >
137
126
</build >
127
+
128
+ <distributionManagement >
129
+ <snapshotRepository >
130
+ <id >ossrh</id >
131
+ <url >https://oss.sonatype.org/content/repositories/snapshots</url >
132
+ </snapshotRepository >
133
+ <repository >
134
+ <id >ossrh</id >
135
+ <url >https://oss.sonatype.org/service/local/staging/deploy/maven2/</url >
136
+ </repository >
137
+ </distributionManagement >
138
138
</profile >
139
139
</profiles >
140
140
Original file line number Diff line number Diff line change 1
1
package com .github .developframework .expression ;
2
2
3
+ import lombok .AccessLevel ;
4
+ import lombok .NoArgsConstructor ;
5
+
3
6
/**
4
7
* 空表达式
8
+ *
5
9
* @author qiuzhenhao
6
10
*/
7
- public class EmptyExpression extends Expression {
11
+ @ NoArgsConstructor (access = AccessLevel .PRIVATE )
12
+ public class EmptyExpression extends Expression {
8
13
9
14
public static final EmptyExpression INSTANCE = new EmptyExpression ();
10
15
You can’t perform that action at this time.
0 commit comments