refactor: 移除未使用的作者和版本注释

This commit is contained in:
Luke 2025-08-31 17:10:19 +08:00
parent 5ec4f9ec6a
commit 67d1949a25
2 changed files with 0 additions and 6 deletions

View File

@ -24,9 +24,6 @@ import java.util.ArrayDeque;
* <li>负责控制流跳转分支循环的标签分配与维护</li> * <li>负责控制流跳转分支循环的标签分配与维护</li>
* <li>在变量赋值和声明时自动常量折叠和登记</li> * <li>在变量赋值和声明时自动常量折叠和登记</li>
* </ul> * </ul>
*
* @author [你的名字]
* @since 1.0
*/ */
public class StatementBuilder { public class StatementBuilder {

View File

@ -35,9 +35,6 @@ import java.util.List;
* R_PUSH [1, 2, 3] // pushes ArrayList {1, 2, 3} * R_PUSH [1, 2, 3] // pushes ArrayList {1, 2, 3}
* R_PUSH [1, [2, 3], 4] // pushes nested arrays as mutable lists * R_PUSH [1, [2, 3], 4] // pushes nested arrays as mutable lists
* </pre> * </pre>
*
* @author (your name or org)
* @since 1.0
*/ */
public class RPushCommand implements Command { public class RPushCommand implements Command {