Skip to content

Commit

Permalink
Minor bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
ex3ndr committed Mar 5, 2014
1 parent 2d9c6bd commit f35c7e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/org/telegram/tl/TLContext.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
* @author Korshakov Stepan <me@ex3ndr.com>
*/
public abstract class TLContext {
private HashMap<Integer, Class> registeredClasses = new HashMap<Integer, Class>();
private HashMap<Integer, Class> registeredCompatClasses = new HashMap<Integer, Class>();
private final HashMap<Integer, Class> registeredClasses = new HashMap<Integer, Class>();
private final HashMap<Integer, Class> registeredCompatClasses = new HashMap<Integer, Class>();

public TLContext() {
init();
Expand Down

0 comments on commit f35c7e8

Please sign in to comment.