format code

Signed-off-by: Sola <dev@sola.love>
This commit is contained in:
Sola
2017-12-15 08:57:51 +08:00
parent 529b36d9e3
commit 0bdcf031b5
69 changed files with 1988 additions and 1988 deletions

View File

@@ -24,16 +24,16 @@ import java.util.Set;
*/
public interface WxSession {
String getId();
String getId();
<T> T getAttribute(String name);
<T> T getAttribute(String name);
Set<String> getAttributeNames();
Set<String> getAttributeNames();
void setAttribute(String name, Object value);
void setAttribute(String name, Object value);
void removeAttribute(String name);
void removeAttribute(String name);
void invalidate();
void invalidate();
}