【fix sonar】 SysCategory.java文件
This commit is contained in:
+2
-2
@@ -56,8 +56,8 @@ public class SysCategory implements Serializable,Comparable<SysCategory>{
|
|||||||
// <0:当前对象比传入对象小。
|
// <0:当前对象比传入对象小。
|
||||||
// =0:当前对象等于传入对象。
|
// =0:当前对象等于传入对象。
|
||||||
// >0:当前对象比传入对象大。
|
// >0:当前对象比传入对象大。
|
||||||
int s = this.code.length() - o.code.length();
|
// int s = this.code.length() - o.code.length();
|
||||||
return s;
|
return this.code.length() - o.code.length();
|
||||||
}
|
}
|
||||||
@Override
|
@Override
|
||||||
public String toString() {
|
public String toString() {
|
||||||
|
|||||||
Reference in New Issue
Block a user