forked from apache/incubator-seata
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
optimize: optimize java doc warning (apache#4925)
- Loading branch information
1 parent
6c739ce
commit cb16176
Showing
105 changed files
with
446 additions
and
431 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ | |
/** | ||
* eureka registry exception | ||
* | ||
* @author: [email protected] | ||
* @author [email protected] | ||
*/ | ||
public class EurekaRegistryException extends RuntimeException { | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,7 +46,6 @@ | |
|
||
/** | ||
* Scope enum. | ||
* @return | ||
*/ | ||
Scope scope() default Scope.SINGLETON; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,7 +25,7 @@ | |
/** | ||
* db page util | ||
* | ||
* @author: lvekee [email protected] | ||
* @author lvekee [email protected] | ||
*/ | ||
public class PageUtil { | ||
/** | ||
|
@@ -78,8 +78,8 @@ public class PageUtil { | |
/** | ||
* check page parm | ||
* | ||
* @param pageNum | ||
* @param pageSize | ||
* @param pageNum the page num | ||
* @param pageSize the page size | ||
*/ | ||
public static void checkParam(int pageNum, int pageSize) { | ||
if (!(pageNum >= MIN_PAGE_NUM && pageNum <= MAX_PAGE_NUM)) { | ||
|
@@ -93,11 +93,11 @@ public static void checkParam(int pageNum, int pageSize) { | |
/** | ||
* get pagesql | ||
* | ||
* @param sourceSql | ||
* @param dbType | ||
* @param pageNum | ||
* @param pageSize | ||
* @return | ||
* @param sourceSql the source sql | ||
* @param dbType the db type | ||
* @param pageNum the page num | ||
* @param pageSize the page size | ||
* @return the page sql | ||
*/ | ||
public static String pageSql(String sourceSql, String dbType, int pageNum, int pageSize) { | ||
switch (dbType) { | ||
|
@@ -120,9 +120,9 @@ public static String pageSql(String sourceSql, String dbType, int pageNum, int p | |
/** | ||
* get countsql | ||
* | ||
* @param sourceSql | ||
* @param dbType | ||
* @return | ||
* @param sourceSql the source sql | ||
* @param dbType the db type | ||
* @return the count sql | ||
*/ | ||
public static String countSql(String sourceSql, String dbType) { | ||
switch (dbType) { | ||
|
@@ -144,9 +144,9 @@ public static String countSql(String sourceSql, String dbType) { | |
|
||
/** | ||
* set sqlParamList in preparedStatement | ||
* @param ps | ||
* @param sqlParamList | ||
* @throws SQLException | ||
* @param ps the prepared statement | ||
* @param sqlParamList the sql param list | ||
* @throws SQLException the sql exception | ||
*/ | ||
public static void setObject(PreparedStatement ps, List<Object> sqlParamList) throws SQLException { | ||
for (int i = 0; i < sqlParamList.size(); i++) { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,7 @@ | |
import com.netflix.appinfo.MyDataCenterInstanceConfig; | ||
|
||
/** | ||
* @author: [email protected] | ||
* @author [email protected] | ||
* override MyDataCenterInstanceConfig for set value, | ||
* eg: instanceId \ipAddress \ applicationName... | ||
*/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,7 +45,7 @@ | |
/** | ||
* The type Eureka registry service. | ||
* | ||
* @author: [email protected] | ||
* @author [email protected] | ||
*/ | ||
public class EurekaRegistryServiceImpl implements RegistryService<EurekaEventListener> { | ||
private static final Logger LOGGER = LoggerFactory.getLogger(EurekaRegistryServiceImpl.class); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.