Skip to content

Commit

Permalink
Build 243.12626
Browse files Browse the repository at this point in the history
  • Loading branch information
hurricup committed Sep 2, 2024
1 parent abd9299 commit 02c569e
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 10 deletions.
1 change: 1 addition & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ allprojects {
intellijPlatform {
defaultRepositories()
jetbrainsRuntime()
nightly()
}
}

Expand Down
8 changes: 4 additions & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,17 @@
# https://www.jetbrains.com/intellij-repository/releases
# https://www.jetbrains.com/intellij-repository/snapshots
name="Perl5 Support (Camelcade)"
platformVersion=2024
platformBranch=.2
platformVersion=243
platformBranch=-SNAPSHOT
platformBuild=
pluginVersion=
pluginBranch=
pluginBranch=.12626
pluginBuild=
platformToolsVersion=243-SNAPSHOT
useInstaller=false
pycharmVersion=192.4787.5-EAP-SNAPSHOT
clionVersion=192.4787.12-EAP-SNAPSHOT
psiViewerVersion=242-SNAPSHOT
psiViewerVersion=243.7768
intelliLangPlugin=org.intellij.intelliLang
remoteRunPlugin=org.jetbrains.plugins.remote-run
coveragePlugin=Coverage
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public class YoutrackErrorHandler extends ErrorReportSubmitter {
public static final String YOUTRACK_PROPERTY_KEY = "youtrack.token";
public static final String YOUTRACK_PROPERTY_VALUE = System.getProperty(YOUTRACK_PROPERTY_KEY);
private static final String ADMIN_TOKEN = "Bearer " + YOUTRACK_PROPERTY_VALUE;
private static final String ACCESS_TOKEN = "Bearer perm:YXV0b3JlcG9ydGVy.NjEtMjE=.7ylXO3QulwaVCA2ZEGLIdc0wPAJQ13";
private static final String ACCESS_TOKEN = "Bearer perm:YXV0b3JlcG9ydGVy.NjEtMjI=.8vBQNSaZTUCojZZYUn4uayG1BKDfTk";

@Override
public @NotNull String getReportActionText() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
package com.perl5.lang.perl.psi.impl;

import com.intellij.codeInsight.daemon.impl.Divider;
import com.intellij.codeInsight.daemon.impl.LocalInspectionsPass;
import com.intellij.lang.ASTNode;
import com.intellij.psi.PsiElement;
import com.intellij.psi.PsiElementVisitor;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,8 @@ public final void serialize(@NotNull Stub stub, @NotNull StubOutputStream dataSt
!(it instanceof PerlLightElementStub) || !((PerlLightElementStub)it).isImplicit());
dataStream.writeVarInt(childrenStubs.size());
serializeStub(stub, dataStream);
for (StubElement<?> childStub : childrenStubs) {
//noinspection rawtypes
for (StubElement childStub : childrenStubs) {
dataStream.writeVarInt(getSerializationId(childStub)); // serialization id
//noinspection unchecked
childStub.getStubType().serialize(childStub, dataStream);
Expand Down Expand Up @@ -118,8 +119,11 @@ protected void serializeStub(@NotNull Stub stub, @NotNull StubOutputStream dataS

@Override
public final void indexStub(@NotNull Stub stub, @NotNull IndexSink sink) {
//noinspection unchecked
stub.getLightNamedElementsStubs().forEach(childStub -> childStub.getStubType().indexStub(childStub, sink));
stub.getLightNamedElementsStubs().forEach(childStub -> {
@SuppressWarnings("rawtypes") var typedStub = (StubElement)childStub;
//noinspection unchecked
typedStub.getStubType().indexStub(typedStub, sink);
});
doIndexStub(stub, sink);
}

Expand Down
2 changes: 1 addition & 1 deletion plugin/parts/pluginChanges.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
-->

<ul>
<li>Maintenance update, check release notes for the <a href="https://github.com/Camelcade/Perl5-IDEA/compare/2024.2...2024.2.1">list of
<li>Maintenance update, check release notes for the <a href="https://github.com/Camelcade/Perl5-IDEA/compare/2024.2...243.12626">list of
changes</a>.
</li>
</ul>

0 comments on commit 02c569e

Please sign in to comment.