This is an automated email from the ASF dual-hosted git repository.
gyeongtae pushed a commit to branch branch-0.12
in repository https://gitbox.apache.org/repos/asf/zeppelin.git
The following commit(s) were added to refs/heads/branch-0.12 by this push:
new 586507513e [ZEPPELIN-6280] Remove unused LivyPySpark3Interpreter class
586507513e is described below
commit 586507513e29bb26e12400552578e17e6516e3a6
Author: YeonKyung Ryu <[email protected]>
AuthorDate: Sat Aug 23 00:10:54 2025 +0900
[ZEPPELIN-6280] Remove unused LivyPySpark3Interpreter class
### What is this PR for?
This PR removes the unused LivyPySpark3Interpreter.java class from the
codebase. This class is no longer referenced anywhere in the project, so its
removal helps simplify the code and reduce maintenance overhead.
### What type of PR is it?
Refactoring
### Todos
* [x] - Remove
zeppelin/livy/src/main/java/org/apache/zeppelin/livy/LivyPySpark3Interpreter.java
### What is the Jira issue?
[ZEPPELIN-6280](https://issues.apache.org/jira/browse/ZEPPELIN-6280)
### How should this be tested?
### Screenshots (if appropriate)
### Questions:
* Does the license files need to update? No
* Is there breaking changes for older versions? No
* Does this needs documentation? No
Closes #5028 from celinayk/ZEPPELIN-6280.
Signed-off-by: ParkGyeongTae <[email protected]>
(cherry picked from commit 8b2aabbace56c184e7f3fbe868807c3b72518a40)
Signed-off-by: ParkGyeongTae <[email protected]>
---
.../zeppelin/livy/LivyPySpark3Interpreter.java | 37 ----------------------
1 file changed, 37 deletions(-)
diff --git
a/livy/src/main/java/org/apache/zeppelin/livy/LivyPySpark3Interpreter.java
b/livy/src/main/java/org/apache/zeppelin/livy/LivyPySpark3Interpreter.java
deleted file mode 100644
index 174c2c0a48..0000000000
--- a/livy/src/main/java/org/apache/zeppelin/livy/LivyPySpark3Interpreter.java
+++ /dev/null
@@ -1,37 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package org.apache.zeppelin.livy;
-
-import java.util.Properties;
-
-
-/**
- * Livy PySpark interpreter for Zeppelin.
- */
-public class LivyPySpark3Interpreter extends LivyPySparkBaseInterpreter {
-
- public LivyPySpark3Interpreter(Properties property) {
- super(property);
- }
-
- @Override
- public String getSessionKind() {
- return "pyspark3";
- }
-
-}