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:
parent
c9c8fd1fef
commit
aeca14d052
|
|
@ -61,6 +61,6 @@ public interface GenotypeWriter {
|
|||
/**
|
||||
* @return true if we support multisample, false otherwise
|
||||
*/
|
||||
public boolean supportsMulitSample();
|
||||
public boolean supportsMultiSample();
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue