refactor: renamed multiply to product
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user