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
4 changes: 2 additions & 2 deletions playscript-java/src/main/play/PrimitiveType.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ private PrimitiveType(String name) {
public static PrimitiveType Char = new PrimitiveType("Char");
public static PrimitiveType Short = new PrimitiveType("Short");

public static PrimitiveType String = new PrimitiveType("Short"); //增加String为基础类型
public static PrimitiveType String = new PrimitiveType("String"); //增加String为基础类型

public static PrimitiveType Null = new PrimitiveType("null");

Expand Down Expand Up @@ -89,4 +89,4 @@ public boolean isType(Type type){
return this == type;
}

}
}