rishabhdaim commented on code in PR #847: URL: https://github.com/apache/jackrabbit-oak/pull/847#discussion_r1129352220
########## oak-run-commons/src/test/java/org/apache/jackrabbit/oak/index/AbstractIndexTestCommand.java: ########## @@ -16,30 +16,28 @@ * specific language governing permissions and limitations * under the License. */ - package org.apache.jackrabbit.oak.index; -import java.io.File; -import java.io.IOException; +import org.apache.jackrabbit.oak.plugins.index.IndexConstants; +import org.junit.After; +import org.junit.Rule; +import org.junit.rules.TemporaryFolder; import javax.jcr.Node; import javax.jcr.PropertyType; import javax.jcr.RepositoryException; import javax.jcr.Session; - -import org.apache.jackrabbit.oak.plugins.index.IndexConstants; -import org.apache.jackrabbit.oak.plugins.index.lucene.util.LuceneIndexDefinitionBuilder; -import org.junit.After; -import org.junit.Rule; -import org.junit.rules.TemporaryFolder; +import java.io.File; +import java.io.IOException; Review Comment: Yes, these changes unnecessarily cause distractions to the actual code changes and also increase the change set. This sometimes causes issues while backporting the changes. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
