Browse Source

The default value of the RuleParam type parameter is "s" (String)

tags/2.6
fmallet 13 years ago
parent
commit
68405a43a6
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      sonar-plugin-api/src/main/java/org/sonar/api/rules/RuleParam.java

+ 1
- 1
sonar-plugin-api/src/main/java/org/sonar/api/rules/RuleParam.java View File

@@ -46,7 +46,7 @@ public class RuleParam {
private String description;
@Column(name = "param_type", updatable = true, nullable = true, length = 512)
private String type;
private String type = "s";
@Column(name = "default_value", updatable = true, nullable = true, length = 4000)
private String defaultValue;

Loading…
Cancel
Save