修改注释与方法参数对应

This commit is contained in:
ziry
2018-12-29 16:28:54 +08:00
parent b66097c004
commit d22fa29b65
11 changed files with 19 additions and 19 deletions

View File

@@ -10,10 +10,10 @@ import java.math.BigDecimal;
public class Arith
{
// 默认除法运算精度
/** 默认除法运算精度 */
private static final int DEF_DIV_SCALE = 10;
// 这个类不能实例化
/** 这个类不能实例化 */
private Arith()
{
}

View File

@@ -85,7 +85,7 @@ public class IpUtils
/**
* 将IPv4地址转换成字节
*
* @param IPv4地址
* @param text IPv4地址
* @return byte 字节
*/
public static byte[] textToNumericFormatV4(String text)

View File

@@ -16,7 +16,8 @@ public class FileUtils
/**
* 输出指定文件的byte数组
*
* @param filename 文件
* @param filePath 文件路径
* @param os 输出流
* @return
*/
public static void writeBytes(String filePath, OutputStream os) throws IOException