This is an automated email from the ASF dual-hosted git repository.

ahuber pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/causeway.git


The following commit(s) were added to refs/heads/master by this push:
     new 0bc768417f CAUSEWAY-2822: removes intermediate code from prev. commit
0bc768417f is described below

commit 0bc768417fa38a14fec00a354e188e15e801a300
Author: andi-huber <[email protected]>
AuthorDate: Mon May 22 11:19:27 2023 +0200

    CAUSEWAY-2822: removes intermediate code from prev. commit
---
 .../runtimeservices/task/TaskQueueService.java     | 51 ----------------------
 1 file changed, 51 deletions(-)

diff --git 
a/core/runtimeservices/src/main/java/org/apache/causeway/core/runtimeservices/task/TaskQueueService.java
 
b/core/runtimeservices/src/main/java/org/apache/causeway/core/runtimeservices/task/TaskQueueService.java
deleted file mode 100644
index 4cf5c72cd4..0000000000
--- 
a/core/runtimeservices/src/main/java/org/apache/causeway/core/runtimeservices/task/TaskQueueService.java
+++ /dev/null
@@ -1,51 +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.causeway.core.runtimeservices.task;
-
-import java.util.concurrent.ExecutorService;
-import java.util.concurrent.Executors;
-
-import javax.annotation.Priority;
-import javax.inject.Inject;
-import javax.inject.Named;
-
-import org.springframework.beans.factory.annotation.Qualifier;
-import org.springframework.core.task.SimpleAsyncTaskExecutor;
-import org.springframework.stereotype.Service;
-
-import org.apache.causeway.applib.annotation.PriorityPrecedence;
-import 
org.apache.causeway.core.runtimeservices.CausewayModuleCoreRuntimeServices;
-
-import lombok.Getter;
-import lombok.NonNull;
-
-@Service
-@Named(TaskQueueService.LOGICAL_TYPE_NAME)
-@Priority(PriorityPrecedence.MIDPOINT)
-@Qualifier("Default")
-public class TaskQueueService {
-
-    static final String LOGICAL_TYPE_NAME = 
CausewayModuleCoreRuntimeServices.NAMESPACE + ".TaskQueueService";
-
-    @Inject private SimpleAsyncTaskExecutor simpleAsyncTaskExecutor;
-
-    @Getter @NonNull
-    private ExecutorService commonExecutorService = 
Executors.newSingleThreadExecutor();
-
-}

Reply via email to