refactor: renamed multiply to product

This commit is contained in:
2026-07-09 10:36:57 +03:30
parent d92176798c
commit 6dd9fcb551
5 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
package com.ap;
public class MathHelper {
public static int multiply(int a, int b) {
public static int product(int a, int b) {
return a * b;
}