ProjectCacheImpl: Fix spelling mistake in error messages

Change-Id: Id27b6a8103b7c7f9270cf335d36c070bbef964e8
Signed-off-by: Edwin Kempin <ekempin@google.com>
This commit is contained in:
Edwin Kempin
2017-01-11 13:03:06 +01:00
parent 0cc48e7c3f
commit e2b6d3ef88

View File

@@ -180,7 +180,7 @@ public class ProjectCacheImpl implements ProjectCache {
n.remove(p.getNameKey());
list.put(ListKey.ALL, Collections.unmodifiableSortedSet(n));
} catch (ExecutionException e) {
log.warn("Cannot list avaliable projects", e);
log.warn("Cannot list available projects", e);
} finally {
listLock.unlock();
}
@@ -195,7 +195,7 @@ public class ProjectCacheImpl implements ProjectCache {
n.add(newProjectName);
list.put(ListKey.ALL, Collections.unmodifiableSortedSet(n));
} catch (ExecutionException e) {
log.warn("Cannot list avaliable projects", e);
log.warn("Cannot list available projects", e);
} finally {
listLock.unlock();
}