Skip to content

Commit e88fb61

Browse files
darvldsgammon
authored andcommitted
chore: apply linter fixes
Signed-off-by: Dario Valdespino <dvaldespino00@gmail.com>
1 parent a55edb2 commit e88fb61

File tree

7 files changed

+13
-20
lines changed

7 files changed

+13
-20
lines changed

packages/engine/src/main/kotlin/elide/runtime/core/InternalRuntimeException.kt

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
11
/*
2-
* Copyright (c) 2024-2025 Elide Technologies, Inc.
2+
* Copyright (c) 2024-2025 Elide Technologies, Inc.
33
*
4-
* Licensed under the MIT license (the "License"); you may not use this file except in compliance
5-
* with the License. You may obtain a copy of the License at
4+
* Licensed under the MIT license (the "License"); you may not use this file except in compliance
5+
* with the License. You may obtain a copy of the License at
66
*
7-
* https://opensource.org/license/mit/
7+
* https://opensource.org/license/mit/
88
*
9-
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
10-
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
11-
* License for the specific language governing permissions and limitations under the License.
9+
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
10+
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
11+
* License for the specific language governing permissions and limitations under the License.
1212
*/
13-
1413
package elide.runtime.core
1514

1615
/** An typically fatal error in the runtime indicating a misuse of internal APIs. */

packages/engine/src/main/kotlin/elide/runtime/exec/ContextAware.kt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,12 @@
44
* Licensed under the MIT license (the "License"); you may not use this file except in compliance
55
* with the License. You may obtain a copy of the License at
66
*
7-
* https://opensource.org/license/mit/
7+
* https://opensource.org/license/mit/
88
*
99
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
1010
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
1111
* License for the specific language governing permissions and limitations under the License.
1212
*/
13-
1413
package elide.runtime.exec
1514

1615
/**

packages/engine/src/main/kotlin/elide/runtime/exec/ContextAwareDispatcher.kt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,12 @@
44
* Licensed under the MIT license (the "License"); you may not use this file except in compliance
55
* with the License. You may obtain a copy of the License at
66
*
7-
* https://opensource.org/license/mit/
7+
* https://opensource.org/license/mit/
88
*
99
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
1010
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
1111
* License for the specific language governing permissions and limitations under the License.
1212
*/
13-
1413
package elide.runtime.exec
1514

1615
import kotlinx.coroutines.*

packages/engine/src/main/kotlin/elide/runtime/exec/ContextAwareExecutor.kt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,12 @@
44
* Licensed under the MIT license (the "License"); you may not use this file except in compliance
55
* with the License. You may obtain a copy of the License at
66
*
7-
* https://opensource.org/license/mit/
7+
* https://opensource.org/license/mit/
88
*
99
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
1010
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
1111
* License for the specific language governing permissions and limitations under the License.
1212
*/
13-
1413
package elide.runtime.exec
1514

1615
import org.graalvm.polyglot.Context

packages/engine/src/main/kotlin/elide/runtime/exec/ContextAwareExecutorBase.kt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,12 @@
44
* Licensed under the MIT license (the "License"); you may not use this file except in compliance
55
* with the License. You may obtain a copy of the License at
66
*
7-
* https://opensource.org/license/mit/
7+
* https://opensource.org/license/mit/
88
*
99
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
1010
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
1111
* License for the specific language governing permissions and limitations under the License.
1212
*/
13-
1413
package elide.runtime.exec
1514

1615
import org.graalvm.polyglot.Context

packages/engine/src/main/kotlin/elide/runtime/exec/ContextLocal.kt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,12 @@
44
* Licensed under the MIT license (the "License"); you may not use this file except in compliance
55
* with the License. You may obtain a copy of the License at
66
*
7-
* https://opensource.org/license/mit/
7+
* https://opensource.org/license/mit/
88
*
99
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
1010
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
1111
* License for the specific language governing permissions and limitations under the License.
1212
*/
13-
1413
package elide.runtime.exec
1514

1615
/** Alias for untyped mutable maps used to store context local values. */

packages/engine/src/main/kotlin/elide/runtime/exec/PinnedContext.kt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,12 @@
44
* Licensed under the MIT license (the "License"); you may not use this file except in compliance
55
* with the License. You may obtain a copy of the License at
66
*
7-
* https://opensource.org/license/mit/
7+
* https://opensource.org/license/mit/
88
*
99
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
1010
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
1111
* License for the specific language governing permissions and limitations under the License.
1212
*/
13-
1413
package elide.runtime.exec
1514

1615
import org.graalvm.polyglot.Context

0 commit comments

Comments
 (0)