On our side of 5CC, we spell multi M-U-L-T-I.

git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@1826 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
ebanks 2009-10-14 01:41:25 +00:00
parent c9c8fd1fef
commit aeca14d052
6 changed files with 6 additions and 6 deletions

View File

@ -61,6 +61,6 @@ public interface GenotypeWriter {
/**
* @return true if we support multisample, false otherwise
*/
public boolean supportsMulitSample();
public boolean supportsMultiSample();
}

View File

@ -167,7 +167,7 @@ public class GeliAdapter implements GenotypeWriter {
/** @return true if we support multisample, false otherwise */
@Override
public boolean supportsMulitSample() {
public boolean supportsMultiSample() {
return false;
}
}

View File

@ -130,7 +130,7 @@ public class GeliTextWriter implements GenotypeWriter {
/** @return true if we support multisample, false otherwise */
@Override
public boolean supportsMulitSample() {
public boolean supportsMultiSample() {
return false;
}
}

View File

@ -305,7 +305,7 @@ public class GLFWriter implements GenotypeWriter {
/** @return true if we support multisample, false otherwise */
@Override
public boolean supportsMulitSample() {
public boolean supportsMultiSample() {
return false;
}
}

View File

@ -110,7 +110,7 @@ public class TabularLFWriter implements GenotypeWriter {
/** @return true if we support multisample, false otherwise */
@Override
public boolean supportsMulitSample() {
public boolean supportsMultiSample() {
return false;
}
}

View File

@ -174,7 +174,7 @@ public class VCFGenotypeWriterAdapter implements GenotypeWriter {
/** @return true if we support multisample, false otherwise */
@Override
public boolean supportsMulitSample() {
public boolean supportsMultiSample() {
return true;
}