From 0074759586f7ceb5cf3e4769f696b20bb0eaeca8 Mon Sep 17 00:00:00 2001 From: benfry Date: Thu, 14 Apr 2005 20:03:21 +0000 Subject: [PATCH] fixing triple-negative error message to make it quadruple negative --- processing/app/PdeSketch.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/processing/app/PdeSketch.java b/processing/app/PdeSketch.java index 3c408488b..734500472 100644 --- a/processing/app/PdeSketch.java +++ b/processing/app/PdeSketch.java @@ -669,8 +669,8 @@ public class PdeSketch { // make sure the paths aren't the same if (newFolder.equals(folder)) { PdeBase.showWarning("You can't fool me", - "The new sketch name and location are the same\n" + - "as the old. I ain't not doin nuthin'.", null); + "The new sketch name and location are the same as\n" + + "the old. I ain't not doin nuthin' not now.", null); return false; }