Skip to content

Commit

Permalink
JAMES-1877 Move class RemoteDeliverySocketFactory to a remoteDelivery…
Browse files Browse the repository at this point in the history
… dedicated package
  • Loading branch information
chibenwa committed Jan 10, 2017
1 parent 97de263 commit e82996e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Expand Up @@ -67,6 +67,7 @@
import org.apache.james.queue.api.MailQueue.MailQueueException;
import org.apache.james.queue.api.MailQueue.MailQueueItem;
import org.apache.james.queue.api.MailQueueFactory;
import org.apache.james.transport.mailets.remoteDelivery.RemoteDeliverySocketFactory;
import org.apache.james.transport.util.Patterns;
import org.apache.james.util.TimeConverter;
import org.apache.mailet.HostAddress;
Expand Down
Expand Up @@ -17,7 +17,7 @@
* under the License. *
****************************************************************/

package org.apache.james.transport.mailets;
package org.apache.james.transport.mailets.remoteDelivery;

import javax.net.SocketFactory;

Expand Down Expand Up @@ -68,7 +68,7 @@ public class RemoteDeliverySocketFactory extends SocketFactory {
* @param addr
* the ip address or host name the delivery socket will bind to
*/
static void setBindAdress(String addr) throws UnknownHostException {
public static void setBindAdress(String addr) throws UnknownHostException {
if (addr == null)
bindAddress = null;
else
Expand Down

0 comments on commit e82996e

Please sign in to comment.