Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions src/main/java/org/example/Main.java
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
package org.example;

import java.io.BufferedInputStream;

public class Main {
/**
* メインの処理.
*
* @param args コマンドライン引数
*/
public static void main(String[] args) {
System.out.println("Hello worl!");
Foo();
}

private static void Foo() {

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Method name 'Foo' must match pattern '^[a-z][a-z0-9]\w*$'.

Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

checkstyle設定ファイルの以下メッセージが出力されていることを確認!

value="Method type name ''{0}'' must match pattern ''{1}''."/>


}
}