From 6cf9790fac04d8a29393d27474cf747ad3cf4d04 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sat, 28 Jan 2012 10:37:14 -0500 Subject: [PATCH] Code Cleanup - Removed code that creates the ~/.task/extensions directory, which will not be needed until 2.1. Until then, it is clutter. --- src/Context.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Context.cpp b/src/Context.cpp index 2ecd61935..a1ea0039c 100644 --- a/src/Context.cpp +++ b/src/Context.cpp @@ -504,8 +504,10 @@ void Context::createDefaultConfig () config.createDefaultData (data_dir); // Create extension directory, if necessary. +/* TODO Enable this when the time is right, say for 2.1 if (! extension_dir.exists ()) extension_dir.create (); +*/ } ////////////////////////////////////////////////////////////////////////////////