Applied minor remarks.

This commit is contained in:
Sergey Kapralov 2016-08-25 11:30:53 +03:00
parent ec2a52900e
commit 6b950e618e
2 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
/*
* Copyright 2016 skapral.
* Copyright 2016 Sergey Kapralov.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@ -17,7 +17,7 @@ package org.teavm.classlib.java.lang;
/**
*
* @author skapral
* @author Sergey Kapralov
*/
public class TStackOverflowError extends TVirtualMachineError {

View File

@ -46,7 +46,7 @@ public interface TMap<K, V> {
V put(K key, V value);
V remove(Object key);
void putAll(TMap<? extends K, ? extends V> m);
void clear();