diff options
author | Kostis Sagonas <[email protected]> | 2011-03-05 19:16:08 +0200 |
---|---|---|
committer | Niclas Axelsson <[email protected]> | 2011-03-11 12:06:16 +0100 |
commit | 2d104353be1fba19d8f202dd2469083c5fe53be7 (patch) | |
tree | 302bd98a911866e23e1f438ae3973dda30ba35fa /lib | |
parent | 1f07334d042e478d385caa0d7634ebfa6703f27a (diff) | |
download | otp-2d104353be1fba19d8f202dd2469083c5fe53be7.tar.gz otp-2d104353be1fba19d8f202dd2469083c5fe53be7.tar.bz2 otp-2d104353be1fba19d8f202dd2469083c5fe53be7.zip |
Simplify two specs
Diffstat (limited to 'lib')
-rw-r--r-- | lib/kernel/src/application.erl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/kernel/src/application.erl b/lib/kernel/src/application.erl index d9db23d652..2a193affd4 100644 --- a/lib/kernel/src/application.erl +++ b/lib/kernel/src/application.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 1996-2009. All Rights Reserved. +%% Copyright Ericsson AB 1996-2011. All Rights Reserved. %% %% The contents of this file are subject to the Erlang Public License, %% Version 1.1, (the "License"); you may not use this file except in @@ -204,12 +204,12 @@ get_env(Key) -> get_env(Application, Key) -> application_controller:get_env(Application, Key). --spec get_all_env() -> [] | [{atom(), any()}]. +-spec get_all_env() -> [{atom(), any()}]. get_all_env() -> application_controller:get_pid_all_env(group_leader()). --spec get_all_env(atom()) -> [] | [{atom(), any()}]. +-spec get_all_env(atom()) -> [{atom(), any()}]. get_all_env(Application) -> application_controller:get_all_env(Application). |