Make the ActionBase type internal (#3069)

This commit is contained in:
Mikael Mengistu 2018-10-05 10:41:17 -07:00 committed by GitHub
parent 2ccf79a912
commit 7f6dd893dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -4,6 +4,6 @@
package com.microsoft.aspnet.signalr;
@FunctionalInterface
public interface ActionBase {
interface ActionBase {
void invoke(Object ... params);
}