2
0
mirror of https://github.com/KDE/kdeconnect-android synced 2025-08-31 14:15:14 +00:00

Remove unneeded variable

This commit is contained in:
Nicolas Fella
2018-09-29 20:59:48 +02:00
parent 5183516c55
commit 2c101af3b0

View File

@@ -15,7 +15,7 @@
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package org.kde.kdeconnect.Helpers;
@@ -109,8 +109,7 @@ public class SMSHelper {
final String selection = Message.DATE + " > ?";
final String[] selectionArgs = new String[] {Long.toString(timestamp)};
List<Message> messages = getMessagesWithFilter(context, selection, selectionArgs);
return messages;
return getMessagesWithFilter(context, selection, selectionArgs);
}
/**