We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 26268d8 commit 9ddd999Copy full SHA for 9ddd999
src/main/Main.java
@@ -16,8 +16,8 @@ public class Main {
16
* @throws IOException
17
*/
18
public static void main(String[] args) throws IOException {
19
- String FilePath = "/Users/Bowen/eclipse-workspace/javaparser/testdata/HelloWorld.java";
20
- String outputDir = "/Users/Bowen/eclipse-workspace/javaparser/output/";
+ String FilePath = "PATH/HelloWorld.java";
+ String outputDir = "PATH/output/";
21
File f = new File(FilePath);
22
ASTGenerator astGenerator = new ASTGenerator(f);
23
List<MyMethodNode> methodNodeList = astGenerator.getMethodNodeList();
0 commit comments