refactor(docs): 清理代码注释中的冗余Java对应说明

This commit is contained in:
1
2025-08-26 23:22:10 +00:00
parent e129e82a8d
commit 5ba6f1b8ef
11 changed files with 42 additions and 42 deletions

View File

@@ -131,7 +131,7 @@ func genMonster(id uint32) maps.OgreInfo {
return t1
}
// 计算整数的二进制1的个数对应Java的Integer.bitCount
// 计算整数的二进制1的个数Integer.bitCount
func bitsCount(n int) int {
count := 0
for n > 0 {