Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/java-speech-api.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSkylion007 <skylion.aaron@gmail.com>2013-09-26 20:17:07 +0400
committerSkylion007 <skylion.aaron@gmail.com>2013-09-26 20:17:07 +0400
commit4629a5408d09ef0bc2ab40eca48eb44ae9deed69 (patch)
tree49dcbdc2053ad83ec3f81b73d58629831dd77a2a
parentec38d68e409a0447cb6fc630a1086aaf52c5ab60 (diff)
Updated package structure to conform to Java naming conventions.
-rw-r--r--src/com/darkprograms/speech/microphone/MicrophoneAnalyzer.java2
-rw-r--r--src/com/darkprograms/speech/util/Complex.java (renamed from src/com/darkprograms/speech/utility/Complex.java)2
-rw-r--r--src/com/darkprograms/speech/util/FFT.java (renamed from src/com/darkprograms/speech/utility/FFT.java)2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/com/darkprograms/speech/microphone/MicrophoneAnalyzer.java b/src/com/darkprograms/speech/microphone/MicrophoneAnalyzer.java
index c4887c7..0624221 100644
--- a/src/com/darkprograms/speech/microphone/MicrophoneAnalyzer.java
+++ b/src/com/darkprograms/speech/microphone/MicrophoneAnalyzer.java
@@ -1,7 +1,7 @@
package com.darkprograms.speech.microphone;
import javax.sound.sampled.AudioFileFormat;
-import com.darkprograms.speech.utility.*;
+import com.darkprograms.speech.util.*;
/********************************************************************************************
* Microphone Analyzer class, detects pitch and volume while extending the microphone class.
diff --git a/src/com/darkprograms/speech/utility/Complex.java b/src/com/darkprograms/speech/util/Complex.java
index 814bebb..cb28ddf 100644
--- a/src/com/darkprograms/speech/utility/Complex.java
+++ b/src/com/darkprograms/speech/util/Complex.java
@@ -1,4 +1,4 @@
-package com.darkprograms.speech.utility;
+package com.darkprograms.speech.util;
/*************************************************************************
diff --git a/src/com/darkprograms/speech/utility/FFT.java b/src/com/darkprograms/speech/util/FFT.java
index a131896..835b317 100644
--- a/src/com/darkprograms/speech/utility/FFT.java
+++ b/src/com/darkprograms/speech/util/FFT.java
@@ -1,4 +1,4 @@
-package com.darkprograms.speech.utility;
+package com.darkprograms.speech.util;
/*************************************************************************