Skip to content

Commit 4388e19

Browse files
committed
Bumping dependency versions and preparing for 3.1.1 release
1 parent 0588a4c commit 4388e19

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ archivesBaseName = 'languagesupport'
1616
ext.isReleaseVersion = !project.version.endsWith('SNAPSHOT')
1717

1818
dependencies {
19-
api 'com.fifesoft:rsyntaxtextarea:3.1.0'
20-
api 'com.fifesoft:autocomplete:3.1.0'
19+
api 'com.fifesoft:rsyntaxtextarea:3.1.2'
20+
api 'com.fifesoft:autocomplete:3.1.1'
2121
implementation 'org.mozilla:rhino:1.7.6'
22-
testImplementation 'junit:junit:4.13'
22+
testImplementation 'junit:junit:4.13.1'
2323
}
2424

2525
wrapper {
26-
gradleVersion = '6.2.2'
26+
gradleVersion = '6.7.1'
2727
}
2828

2929
repositories {

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Note that Maven- and signing-related properties are in <maven-home>/gradle.properties
22
javaVersion=1.8
3-
version=3.1.1-SNAPSHOT
3+
version=3.1.1
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7.1-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

src/main/java/org/fife/rsta/ac/js/resolver/JavaScriptCompletionResolver.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ protected TypeDeclaration resolveNativeType(AstNode node)
139139
* Test whether the node can be resolved as a static Java class.
140140
* Only looks for Token.NAME nodes to test
141141
* @param node node to test
142-
* @return
142+
* @return The type declaration.
143143
*/
144144
protected TypeDeclaration testJavaStaticType(AstNode node) {
145145
switch (node.getType()) {
@@ -386,7 +386,7 @@ private boolean isParameter(AstNode node) {
386386
*
387387
* @param node
388388
* @param lastJavaScriptType
389-
* @return
389+
* @return The type.
390390
*/
391391
protected JavaScriptType lookupFromName(AstNode node,
392392
JavaScriptType lastJavaScriptType) {
@@ -416,7 +416,7 @@ protected JavaScriptType lookupFromName(AstNode node,
416416
*
417417
* @param node
418418
* @param lastJavaScriptType
419-
* @return
419+
* @return The type.
420420
*/
421421
protected JavaScriptType lookupFunctionCompletion(AstNode node,
422422
JavaScriptType lastJavaScriptType) {

src/main/java/org/fife/rsta/ac/js/resolver/JavaScriptResolver.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,15 +59,15 @@ public JavaScriptResolver(SourceCompletionProvider provider)
5959
* Get lookup string for function completions
6060
* @param method JSMethodData holding method information
6161
* @param name name of method
62-
* @return
62+
* @return The lookup text.
6363
*/
6464
public abstract String getLookupText(JSMethodData method, String name);
6565

6666
/**
6767
* Returns same string format as {@link #getLookupText(JSMethodData, String)} but from AstNode Function
6868
* @param call
6969
* @param provider
70-
* @return
70+
* @return The function name.
7171
*/
7272
public abstract String getFunctionNameLookup(FunctionCall call, SourceCompletionProvider provider);
7373

0 commit comments

Comments
 (0)