Skip to content

Commit 96c5da1

Browse files
committed
Comment out unused variables
1 parent adc5803 commit 96c5da1

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

rdf.go

+15-15
Original file line numberDiff line numberDiff line change
@@ -105,27 +105,27 @@ var (
105105

106106
// Time and date:
107107

108-
xsdDate = IRI{str: "http://www.w3.org/2001/XMLSchema#date"}
109-
xsdTime = IRI{str: "http://www.w3.org/2001/XMLSchema#time"}
110-
xsdDateTime = IRI{str: "http://www.w3.org/2001/XMLSchema#dateTime"} // time.Time
111-
xsdDateTimeStamp = IRI{str: "http://www.w3.org/2001/XMLSchema#dateTimeStamp"}
108+
//xsdDate = IRI{str: "http://www.w3.org/2001/XMLSchema#date"}
109+
//xsdTime = IRI{str: "http://www.w3.org/2001/XMLSchema#time"}
110+
xsdDateTime = IRI{str: "http://www.w3.org/2001/XMLSchema#dateTime"} // time.Time
111+
//xsdDateTimeStamp = IRI{str: "http://www.w3.org/2001/XMLSchema#dateTimeStamp"}
112112

113113
// Recurring and partial dates:
114114

115-
xsdYear = IRI{str: "http://www.w3.org/2001/XMLSchema#gYear"}
116-
xsdMonth = IRI{str: "http://www.w3.org/2001/XMLSchema#gMonth"}
117-
xsdDay = IRI{str: "http://www.w3.org/2001/XMLSchema#gDay"}
118-
xsdYearMonth = IRI{str: "http://www.w3.org/2001/XMLSchema#gYearMonth"}
119-
xsdDuration = IRI{str: "http://www.w3.org/2001/XMLSchema#Duration"}
120-
xsdYearMonthDuration = IRI{str: "http://www.w3.org/2001/XMLSchema#yearMonthDuration"}
121-
xsdDayTimeDuration = IRI{str: "http://www.w3.org/2001/XMLSchema#dayTimeDuration"}
115+
//xsdYear = IRI{str: "http://www.w3.org/2001/XMLSchema#gYear"}
116+
//xsdMonth = IRI{str: "http://www.w3.org/2001/XMLSchema#gMonth"}
117+
//xsdDay = IRI{str: "http://www.w3.org/2001/XMLSchema#gDay"}
118+
//xsdYearMonth = IRI{str: "http://www.w3.org/2001/XMLSchema#gYearMonth"}
119+
//xsdDuration = IRI{str: "http://www.w3.org/2001/XMLSchema#Duration"}
120+
//xsdYearMonthDuration = IRI{str: "http://www.w3.org/2001/XMLSchema#yearMonthDuration"}
121+
//xsdDayTimeDuration = IRI{str: "http://www.w3.org/2001/XMLSchema#dayTimeDuration"}
122122

123123
// Limited-range integer numbers
124124

125-
xsdByte = IRI{str: "http://www.w3.org/2001/XMLSchema#byte"} // []byte
126-
xsdShort = IRI{str: "http://www.w3.org/2001/XMLSchema#short"} // int16
127-
xsdInt = IRI{str: "http://www.w3.org/2001/XMLSchema#int"} // int32
128-
xsdLong = IRI{str: "http://www.w3.org/2001/XMLSchema#long"} // int64
125+
xsdByte = IRI{str: "http://www.w3.org/2001/XMLSchema#byte"} // []byte
126+
//xsdShort = IRI{str: "http://www.w3.org/2001/XMLSchema#short"} // int16
127+
xsdInt = IRI{str: "http://www.w3.org/2001/XMLSchema#int"} // int32
128+
//xsdLong = IRI{str: "http://www.w3.org/2001/XMLSchema#long"} // int64
129129

130130
// Various
131131

0 commit comments

Comments
 (0)