Skip to content

Commit cae2284

Browse files
committed
Rename default branch to 'main'.
Signed-off-by: Roland Grunberg <[email protected]>
1 parent 405466a commit cae2284

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.github/scripts/check_and_update_jdk.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
if latest_jdk != current_jdk:
3131
print(f'New JDK version detected: {latest_jdk}')
3232
# Create a formatted string template from the URI structure
33-
uri_base = 'https://ci.eclipse.org/ls/job/jdt-ls-master/lastCompletedBuild/testReport/org.eclipse.jdt.ls.core.internal.{package}/{java_class}/{method}/api/python'
33+
uri_base = 'https://ci.eclipse.org/ls/job/jdt-ls-main/lastCompletedBuild/testReport/org.eclipse.jdt.ls.core.internal.{package}/{java_class}/{method}/api/python'
3434
# Define the test URLs to check using the template and list comprehension
3535
tests = [
3636
uri_base.format(package='managers', java_class=c, method=m) for c, m in [('EclipseProjectImporterTest', 'testPreviewFeaturesDisabledByDefault'), ('InvisibleProjectImporterTest', 'testPreviewFeaturesEnabledByDefault'), ('MavenProjectImporterTest', f'testJava{latest_jdk}Project')]
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
on:
22
push:
33
branches:
4-
- master
4+
- main
55
jobs:
66
triage:
77
runs-on: ubuntu-latest
88
steps:
99
- uses: mschilde/auto-label-merge-conflicts@8c6faa8a252e35ba5e15703b3d747bf726cdb95c
1010
with:
1111
CONFLICT_LABEL_NAME: "has conflicts"
12-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
12+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ You can create a binary that you can sideload to your VS Code installation.
198198
$ npm install
199199
```
200200
4. Optionally, follow the instruction to build the server.
201-
5. See documentation on [extension installation](https://github.com/microsoft/vscode-docs/blob/master/api/working-with-extensions/publishing-extension.md)
201+
5. See documentation on [extension installation](https://github.com/microsoft/vscode-docs/blob/main/api/working-with-extensions/publishing-extension.md)
202202
on ways to sideload or share.
203203

204204
# Reporting issues

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ Language support for Java &trade; for Visual Studio Code
44
[![Visual Studio Marketplace](https://img.shields.io/visual-studio-marketplace/v/redhat.java?style=for-the-badge&label=VS%20Marketplace&logo=visual-studio-code)](https://marketplace.visualstudio.com/items?itemName=redhat.java)
55
[![Installs](https://img.shields.io/visual-studio-marketplace/i/redhat.java?style=for-the-badge)](https://marketplace.visualstudio.com/items?itemName=redhat.java)
66
[![Join the chat at https://gitter.im/redhat-developer/vscode-java](https://img.shields.io/gitter/room/redhat-developer/vscode-java?style=for-the-badge&logo=gitter)](https://gitter.im/redhat-developer/vscode-java)
7-
[![Build Status](https://img.shields.io/github/actions/workflow/status/redhat-developer/vscode-java/pr-verify.yml?branch=master&style=for-the-badge&logo=github)](https://github.com/redhat-developer/vscode-java/actions?query=workflow:pr-verify)
8-
[![License](https://img.shields.io/github/license/redhat-developer/vscode-java?style=for-the-badge&logo=eclipse)](https://github.com/redhat-developer/vscode-java/blob/master/LICENSE)
7+
[![Build Status](https://img.shields.io/github/actions/workflow/status/redhat-developer/vscode-java/pr-verify.yml?branch=main&style=for-the-badge&logo=github)](https://github.com/redhat-developer/vscode-java/actions?query=workflow:pr-verify)
8+
[![License](https://img.shields.io/github/license/redhat-developer/vscode-java?style=for-the-badge&logo=eclipse)](https://github.com/redhat-developer/vscode-java/blob/main/LICENSE)
99

1010
Provides Java &trade; language support via
1111
[Eclipse &trade; JDT Language Server](https://github.com/eclipse/eclipse.jdt.ls), which utilizes
@@ -22,7 +22,7 @@ If on another platform, or using the "universal" version, you can [set](#setting
2222

2323
Features
2424
=========
25-
![ screencast ](https://raw.githubusercontent.com/redhat-developer/vscode-java/master/images/vscode-java.0.0.1.gif)
25+
![ screencast ](https://raw.githubusercontent.com/redhat-developer/vscode-java/main/images/vscode-java.0.0.1.gif)
2626

2727
* Supports code from Java 1.8 to Java 24
2828
* Maven pom.xml project support
@@ -267,7 +267,7 @@ Troubleshooting
267267
It should show ready (thumbs up) as on the image below. You can click on the status and open the
268268
language tool logs for further information in case of a failure.
269269

270-
![ status indicator ](https://raw.githubusercontent.com/redhat-developer/vscode-java/master/images/statusMarker.png)
270+
![ status indicator ](https://raw.githubusercontent.com/redhat-developer/vscode-java/main/images/statusMarker.png)
271271

272272
2. Read the [troubleshooting guide](https://github.com/redhat-developer/vscode-java/wiki/Troubleshooting) for collecting informations about issues you might encounter.
273273

src/typeHierarchy/model.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ class TypeHierarchyTreeDataProvider implements vscode.TreeDataProvider<TypeHiera
194194
}
195195
if (this.model.getDirection() === TypeHierarchyDirection.children || this.model.getDirection() === TypeHierarchyDirection.both) {
196196
if (!element.children) {
197-
if (TypeHierarchyTreeDataProvider.isWhiteListType(element)) {
197+
if (TypeHierarchyTreeDataProvider.isAllowedType(element)) {
198198
return [TypeHierarchyTreeDataProvider.getFakeItem(element)];
199199
}
200200
const resolvedItem = await resolveTypeHierarchy(this.client, element, this.model.getDirection(), this.token);
@@ -223,7 +223,7 @@ class TypeHierarchyTreeDataProvider implements vscode.TreeDataProvider<TypeHiera
223223
return undefined;
224224
}
225225

226-
private static isWhiteListType(item: TypeHierarchyItem): boolean {
226+
private static isAllowedType(item: TypeHierarchyItem): boolean {
227227
if (item.name === "Object" && item.detail === "java.lang") {
228228
return true;
229229
}

0 commit comments

Comments
 (0)