summaryrefslogtreecommitdiff
path: root/java/src/IceInternal/TraceLevels.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/src/IceInternal/TraceLevels.java')
-rw-r--r--java/src/IceInternal/TraceLevels.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/java/src/IceInternal/TraceLevels.java b/java/src/IceInternal/TraceLevels.java
index 7458ac971c3..35c92d59def 100644
--- a/java/src/IceInternal/TraceLevels.java
+++ b/java/src/IceInternal/TraceLevels.java
@@ -16,16 +16,16 @@ public final class TraceLevels
networkCat = "Network";
protocolCat = "Protocol";
retryCat = "Retry";
- locationCat = "Location";
- slicingCat = "Slicing";
+ locationCat = "Location";
+ slicingCat = "Slicing";
final String keyBase = "Ice.Trace.";
network = properties.getPropertyAsInt(keyBase + networkCat);
- protocol = properties.getPropertyAsInt(keyBase + protocolCat);
+ protocol = properties.getPropertyAsInt(keyBase + protocolCat);
retry = properties.getPropertyAsInt(keyBase + retryCat);
- location = properties.getPropertyAsInt(keyBase + locationCat);
- slicing = properties.getPropertyAsInt(keyBase + slicingCat);
+ location = properties.getPropertyAsInt(keyBase + locationCat);
+ slicing = properties.getPropertyAsInt(keyBase + slicingCat);
}
final public int network;